From 85da1ccaaf2eceaf7071d3f4f418af72848199aa Mon Sep 17 00:00:00 2001 From: Nathan Date: Mon, 8 Jun 2026 22:28:24 -0400 Subject: [PATCH 1/9] feat: MA lobbying data pipeline, entity normalization, CI workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Data pipeline scripts: - get_MA_lobbying.py — full MA SoS lobbying disclosure scraper (2005–present) - get_MA_legislature_bills.py — incremental Legislature API bill text fetcher - score_lobbying_bills.py — Gemini embedding + env relevance scoring (fixes H/S chamber collision dedup bug; derive bill_id from chamber prefix) - summarize_lobbying_bills.py — parallel LLM summary + taxonomy tagging (actual cost: $0.627/1k bills; documented in script header) - cluster_lobbying_bills.py — k-means clustering on bill embeddings - assemble_db.py — entity normalization, bill_id join key, lobbying tables - validate_data.py — lobbying schema checks - generate_semantic_context.py — lobbying table descriptions + join docs CI workflows: - update-weekly.yml (new): replaces update-data.yml as the weekly job; runs full pipeline including lobbying incremental fetch + scoring - update-data.yml / update-charts.yml: refactored as self-contained; no cross-workflow dispatch (GITHUB_TOKEN can't trigger workflow_dispatch) Infrastructure: - requirements-ci.txt: add scikit-learn, bump joblib, add gcsfs/pyarrow - CLAUDE.md: document Gemini cost actuals, lobbying known issues - .gitignore: add lobbying secret and cache dirs Data: - docs/data/: lobbying sample CSVs, legislature sample, cluster labels, embedding model artifacts, timestamps, facts_lobbying.yml - docs/assets/db_semantic_context.txt: lobbying + legislature table context Dashboard charts (dashboard_charts.py: graceful try/except for lobbying import until MA_lobbying_viz.py lands in a follow-up PR): - Non-lobbying dash chart refreshes: MADEP enforcement, MAEEADP CSO/EJ Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/update-charts.yml | 16 +- .github/workflows/update-data.yml | 31 +- .github/workflows/update-weekly.yml | 146 +++ .gitignore | 12 + CLAUDE.md | 8 + analysis/dashboard_charts.py | 9 + docs/README.md | 23 +- .../charts/dash_MADEP_enforcement_bytype.html | 2 +- .../dash_MADEP_enforcement_fines_overall.html | 2 +- ...DEP_enforcement_fines_overall_stacked.html | 2 +- .../dash_MADEP_enforcement_overall.html | 2 +- .../dash_MADEP_enforcement_vsbudget.html | 2 +- ...correlation_byCensus block_LINGISOPCT.html | 2 +- ..._correlation_byCensus block_LOWINCPCT.html | 2 +- ...N_correlation_byCensus block_MINORPCT.html | 2 +- ...correlation_bymunicipality_LINGISOPCT.html | 2 +- ..._correlation_bymunicipality_LOWINCPCT.html | 2 +- ...N_correlation_bymunicipality_MINORPCT.html | 2 +- ...EN_correlation_bywatershed_LINGISOPCT.html | 2 +- ...EEN_correlation_bywatershed_LOWINCPCT.html | 2 +- ...REEN_correlation_bywatershed_MINORPCT.html | 2 +- ...sh_MAEEADP_dashboard_counts_per_month.html | 4 +- ...dashboard_modeled_vs_metered_fraction.html | 4 +- ...ADP_dashboard_monthly_volume_rainfall.html | 4 +- ...DP_dashboard_monthly_volume_watershed.html | 4 +- .../dash_MAEEADP_dashboard_rainfall_cdf.html | 2 +- ...ADP_dashboard_rainfall_discharge_freq.html | 2 +- ..._dashboard_rainfall_discharge_scatter.html | 4 +- ...sh_MAEEADP_dashboard_volume_per_month.html | 4 +- docs/assets/db_semantic_context.txt | 265 +++++- docs/data/EEADP_CSO_sample.csv | 20 +- docs/data/EEADP_drinkingWater_annual.csv | 293 ++---- .../EEADP_drinkingWater_annual_sample.csv | 20 +- docs/data/EEADP_drinkingWater_sample.csv | 20 +- docs/data/EEADP_enforcement.csv | 72 +- docs/data/EEADP_enforcement_sample.csv | 20 +- docs/data/EEADP_facility.csv | 174 ++-- docs/data/EEADP_facility_sample.csv | 20 +- docs/data/EEADP_inspection.csv | 141 +-- docs/data/EEADP_inspection_sample.csv | 20 +- docs/data/EEADP_permit_sample.csv | 20 +- docs/data/EPARegion1_NPDES_permit_data.csv | 46 +- docs/data/MADEP_staff_SODA_sample.csv | 20 +- docs/data/MA_bill_cluster_labels.csv | 26 + docs/data/MA_bill_emb_mean.npy | Bin 0 -> 3200 bytes docs/data/MA_bill_kmeans.joblib | Bin 0 -> 181191 bytes docs/data/MA_legislature_bills_sample.csv | 104 +++ docs/data/MA_lobbying.md | 91 ++ docs/data/MA_lobbying_bills_sample.csv | 107 +++ docs/data/MA_lobbying_bills_scored_sample.csv | 101 +++ docs/data/MA_lobbying_employers_sample.csv | 101 +++ .../data/MA_lobbying_summary_links_sample.csv | 101 +++ docs/data/MA_precipitation_daily.csv | 254 +++--- docs/data/data_stats.yml | 8 +- docs/data/embedding_diagnostics.png | Bin 0 -> 376482 bytes docs/data/facts_lobbying.yml | 4 + docs/data/ts_update_EEADP.yml | 2 +- docs/data/ts_update_EEADP_CSO.yml | 2 +- .../ts_update_EPARegion1_NPDES_permit.yml | 2 +- docs/data/ts_update_MADEP_staff_SODA.yml | 2 +- docs/data/ts_update_MA_legislature.yml | 1 + docs/data/ts_update_MA_lobbying.yml | 1 + docs/data/ts_update_MA_precipitation.yml | 2 +- docs/data/ts_update_MS4.yml | 2 +- .../ts_update_MassBudget_environmental.yml | 2 +- docs/data/ts_update_dashboard.yml | 2 +- get_data/NOTES_bill_embeddings.md | 376 ++++++++ get_data/README_lobbying.md | 225 +++++ get_data/assemble_db.py | 214 ++++- get_data/cluster_lobbying_bills.py | 419 +++++++++ get_data/cluster_pilot_summaries.py | 318 +++++++ get_data/diagnostics_summarize.py | 645 ++++++++++++++ get_data/fill_summary_embeddings.py | 200 +++++ get_data/generate_semantic_context.py | 183 ++++ get_data/get_MA_legislature_bills.py | 280 ++++++ get_data/get_MA_lobbying.py | 508 +++++++++++ get_data/recover_from_log.py | 176 ++++ get_data/score_lobbying_bills.py | 517 +++++++++++ get_data/summarize_lobbying_bills.py | 836 ++++++++++++++++++ get_data/test_bill_embedding_pipeline.py | 408 +++++++++ get_data/test_concat_embeddings.py | 174 ++++ get_data/validate_data.py | 23 + requirements-ci.txt | 7 +- 83 files changed, 7036 insertions(+), 840 deletions(-) create mode 100644 .github/workflows/update-weekly.yml create mode 100644 docs/data/MA_bill_cluster_labels.csv create mode 100644 docs/data/MA_bill_emb_mean.npy create mode 100644 docs/data/MA_bill_kmeans.joblib create mode 100644 docs/data/MA_legislature_bills_sample.csv create mode 100644 docs/data/MA_lobbying.md create mode 100644 docs/data/MA_lobbying_bills_sample.csv create mode 100644 docs/data/MA_lobbying_bills_scored_sample.csv create mode 100644 docs/data/MA_lobbying_employers_sample.csv create mode 100644 docs/data/MA_lobbying_summary_links_sample.csv create mode 100644 docs/data/embedding_diagnostics.png create mode 100644 docs/data/facts_lobbying.yml create mode 100644 docs/data/ts_update_MA_legislature.yml create mode 100644 docs/data/ts_update_MA_lobbying.yml create mode 100644 get_data/NOTES_bill_embeddings.md create mode 100644 get_data/README_lobbying.md create mode 100644 get_data/cluster_lobbying_bills.py create mode 100644 get_data/cluster_pilot_summaries.py create mode 100644 get_data/diagnostics_summarize.py create mode 100644 get_data/fill_summary_embeddings.py create mode 100644 get_data/get_MA_legislature_bills.py create mode 100644 get_data/get_MA_lobbying.py create mode 100644 get_data/recover_from_log.py create mode 100644 get_data/score_lobbying_bills.py create mode 100644 get_data/summarize_lobbying_bills.py create mode 100644 get_data/test_bill_embedding_pipeline.py create mode 100644 get_data/test_concat_embeddings.py diff --git a/.github/workflows/update-charts.yml b/.github/workflows/update-charts.yml index 89d6862f..a454eeff 100644 --- a/.github/workflows/update-charts.yml +++ b/.github/workflows/update-charts.yml @@ -1,15 +1,7 @@ -name: Update Charts +name: Update Charts Only on: - # Primary trigger: explicitly dispatched by update-data.yml after its PR merges. - # (GitHub does not fire push events from GITHUB_TOKEN bot merges, so on:push - # alone is not reliable for bot-initiated data updates.) - # Fallback: push to main touching docs/data/** covers human-initiated merges. - push: - branches: [main] - paths: - - 'docs/data/**' - workflow_dispatch: # Primary trigger from update-data.yml; also allows manual runs + workflow_dispatch: # Manual trigger only concurrency: group: update-charts @@ -71,10 +63,10 @@ jobs: git push origin "$BRANCH" gh pr create \ --title "Auto-update dashboard charts $(date -u +%Y-%m-%d)" \ - --body "Automated chart regeneration triggered by data update." \ + --body "Manual chart regeneration against current GCS database." \ --base main \ --head "$BRANCH" - gh pr merge "$BRANCH" --auto --squash + gh pr merge "$BRANCH" --squash - name: Open issue on failure if: failure() diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml index 4901052d..b085d5c2 100644 --- a/.github/workflows/update-data.yml +++ b/.github/workflows/update-data.yml @@ -1,9 +1,7 @@ -name: Update Data +name: Update Data Only on: - schedule: - - cron: '0 6 * * 1' # Every Monday at 6am UTC - workflow_dispatch: # Allow manual trigger from GitHub UI + workflow_dispatch: # Manual trigger only env: FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' @@ -43,7 +41,8 @@ jobs: - name: Write Google API key run: echo "${{ secrets.GOOGLE_API_KEY }}" > get_data/SECRET_GOOGLE_API_KEY - - name: Fetch data + - name: Fetch — EPA/budget/staff/EEA/CSO/precipitation/303d/MS4 + timeout-minutes: 45 working-directory: get_data run: | python get_EPARegion1_NPDES_permits.py @@ -55,6 +54,23 @@ jobs: python get_ATTAINS_303d.py python get_MS4_annual_reports.py --yes --skip-download + - name: Fetch — MA lobbying disclosures (incremental) + timeout-minutes: 30 + working-directory: get_data + run: python get_MA_lobbying.py + + - name: Fetch — MA legislature bills (incremental) + timeout-minutes: 20 + working-directory: get_data + run: python get_MA_legislature_bills.py + + - name: Score and cluster lobbying bills + timeout-minutes: 30 + working-directory: get_data + run: | + python score_lobbying_bills.py + python cluster_lobbying_bills.py --incremental + - name: Validate data working-directory: get_data run: python validate_data.py @@ -80,11 +96,10 @@ jobs: git push origin "$BRANCH" gh pr create \ --title "Auto-update data $(date -u +%Y-%m-%d)" \ - --body "Automated weekly data refresh. Merging this will trigger the chart-update workflow." \ + --body "Manual data-only refresh. Run 'Update Charts Only' separately to regenerate dashboard charts." \ --base main \ --head "$BRANCH" gh pr merge "$BRANCH" --squash - gh workflow run update-charts.yml --ref main - name: Open issue on failure if: failure() @@ -96,7 +111,7 @@ jobs: repo: context.repo.repo, title: `Data update failed: ${new Date().toISOString().split('T')[0]}`, body: [ - '## Scheduled data update failed', + '## Manual data update failed', '', `**Run:** ${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`, '', diff --git a/.github/workflows/update-weekly.yml b/.github/workflows/update-weekly.yml new file mode 100644 index 00000000..7e589181 --- /dev/null +++ b/.github/workflows/update-weekly.yml @@ -0,0 +1,146 @@ +name: Weekly Update (Data + Charts) + +on: + schedule: + - cron: '0 6 * * 1' # Every Monday at 6am UTC + workflow_dispatch: # Allow manual trigger from GitHub UI + +concurrency: + group: update-weekly + cancel-in-progress: false + +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' + +jobs: + update: + runs-on: ubuntu-latest + permissions: + contents: write # to push branch + issues: write # to open failure issues + pull-requests: write # to create PR + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + cache: pip + + - name: Install dependencies + run: pip install -r requirements-ci.txt + + - name: Authenticate to Google Cloud + uses: google-github-actions/auth@v2 + with: + credentials_json: ${{ secrets.GCP_SA_KEY }} + + - name: Set up Cloud SDK (provides gsutil) + uses: google-github-actions/setup-gcloud@v2 + + - name: Write SODA credentials + run: | + printf '%s\n%s\n' "${{ secrets.SODA_APP_TOKEN }}" "${{ secrets.SODA_SECRET_TOKEN }}" \ + > get_data/SECRET_SODA_token + + - name: Write Google API key + run: echo "${{ secrets.GOOGLE_API_KEY }}" > get_data/SECRET_GOOGLE_API_KEY + + - name: Fetch — EPA/budget/staff/EEA/CSO/precipitation/303d/MS4 + timeout-minutes: 45 + working-directory: get_data + run: | + python get_EPARegion1_NPDES_permits.py + python get_budget_CTHRU.py + python get_DEP_staff_SODA.py + python get_EEA_data_portal.py + python get_eea_dp_cso.py + python get_MA_precipitation.py + python get_ATTAINS_303d.py + python get_MS4_annual_reports.py --yes --skip-download + + - name: Fetch — MA lobbying disclosures (incremental) + timeout-minutes: 30 + working-directory: get_data + run: python get_MA_lobbying.py + + - name: Fetch — MA legislature bills (incremental) + timeout-minutes: 20 + working-directory: get_data + run: python get_MA_legislature_bills.py + + - name: Score and cluster lobbying bills + timeout-minutes: 30 + working-directory: get_data + run: | + python score_lobbying_bills.py + python cluster_lobbying_bills.py --incremental + + - name: Validate data + working-directory: get_data + run: python validate_data.py + + - name: Assemble database + working-directory: get_data + run: python assemble_db.py + + - name: Generate dashboard charts + working-directory: analysis + run: python dashboard_charts.py + + - name: Write timestamps + run: | + echo "updated: $(date -u +'%Y-%m-%d %H:%M:%S')" > docs/data/ts_update_dashboard.yml + + - name: Commit and open PR + env: + GH_TOKEN: ${{ github.token }} + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git add docs/data/ \ + docs/_includes/charts/dash_*.html \ + docs/data/facts_dash_*.yml \ + docs/data/facts_DEPstaff.yml \ + docs/data/facts_DEPenforce.yml \ + docs/data/facts_ECOSbudgets.yml \ + docs/data/facts_EPA303d.yml \ + docs/data/ts_update_dashboard.yml + if git diff --staged --quiet; then + echo "No changes — skipping PR." + exit 0 + fi + BRANCH="auto/weekly-$(date -u +%Y-%m-%d)" + git checkout -b "$BRANCH" + git commit -m "Auto-update data + charts $(date -u +%Y-%m-%d)" + git push origin "$BRANCH" + gh pr create \ + --title "Auto-update data + charts $(date -u +%Y-%m-%d)" \ + --body "Automated weekly data and chart refresh." \ + --base main \ + --head "$BRANCH" + gh pr merge "$BRANCH" --squash + + - name: Open issue on failure + if: failure() + uses: actions/github-script@v7 + with: + script: | + github.rest.issues.create({ + owner: context.repo.owner, + repo: context.repo.repo, + title: `Weekly update failed: ${new Date().toISOString().split('T')[0]}`, + body: [ + '## Scheduled weekly update failed', + '', + `**Run:** ${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`, + '', + 'Check the run logs above for details. Common causes:', + '- EPA or EEA website structure changed (scraper broke)', + '- API returned unexpected data (caught by validate_data.py)', + '- Row count decreased vs. previous run', + '- GCS credentials expired', + ].join('\n'), + labels: ['data-update-failure'], + }) diff --git a/.gitignore b/.gitignore index 20a2b092..fa15e364 100644 --- a/.gitignore +++ b/.gitignore @@ -103,6 +103,16 @@ get_data/MS4_annual_reports/ # Large files *EEADP_drinkingWater.csv +docs/data/MA_bill_embeddings.parquet +docs/data/MA_bill_embeddings.npy +get_data/MA_legislature_cache/ + +# MA lobbying large CSVs — stored in GCS, only samples committed +docs/data/MA_lobbying_bills.csv +docs/data/MA_lobbying_employers.csv +docs/data/MA_lobbying_summary_links.csv +docs/data/MA_lobbying_bills_scored.csv +docs/data/MA_legislature_bills.csv get_data/backup_AMEND.db get_data/EEADP_drinkingWater.csv @@ -117,3 +127,5 @@ get_data/backup_AMEND.db get_data/AMEND.db docs/assets/debug_screenshot.png +docs/data/MA_legislature_bills.csv.bak_wrong_gc +docs/data/MA_lobbying_static_site_proposal.md diff --git a/CLAUDE.md b/CLAUDE.md index 402f3169..f87a4270 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -67,6 +67,14 @@ bash set_cors_gsutil.sh - **EPA NPDES page changes**: EPA changed JSON format and column names around 2025; both handled with `isinstance` checks and fallback column detection. - **EEA CSOAPI**: Requires `Referer` and `Origin` headers matching the portal URL; plain requests return HTTP 500. Pagination is 1-indexed. - **303(d) data (biennial)**: `get_ATTAINS_303d.py` fetches from MassGIS S3-hosted shapefiles (not the ATTAINS REST API, which times out on `/assessments`). Data updates only biennially (even years); the script exits early if all known cycles are already in the cached CSV. The 2020 cycle was never published by MassGIS. The 2024/2026 cycle is in draft as of April 2026 — the script will auto-detect it when MassGIS publishes the approved shapefile. `CSO_303d_Mapping` in `assemble_db.py` is a manually curated dict (35 verified matches of 56 CSO waterbodies); update it when a new cycle is added by reviewing new assessment unit names against CSO waterBody values. +- **MA lobbying portal (Incapsula WAF)**: The SoS portal (`sec.state.ma.us/LobbyistPublicSearch/`) is protected by Incapsula WAF. A Chrome User-Agent gets a 302 redirect to a JS challenge page. An **iPad User-Agent** bypasses it entirely with plain `requests` — no Selenium needed. The working UA is `Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148`. +- **MA lobbying portal (search form)**: ASP.NET with ViewState. POST to `Default.aspx` with `drpType=L` (Lobbyist or Lobbying Entity — do NOT use `Z` which returns Client pages with different structure), `drpPageSize=20000`, `ddlYear=`. POST timeout must be 120s (response is ~2MB for ~1700 results). Data goes back to 2005 (22 years). +- **MA lobbying incremental fetch**: Disclosures are filed semi-annually per employer, so weekly CI almost always exits early. The incremental state is the `disc_url` set in `MA_lobbying_summary_links.csv` — only new `CompleteDisclosure.aspx` URLs get fetched. Always re-checks current and prior year for new filers. +- **MA lobbying full historical fetch**: At `REQUEST_DELAY=1.0s`, fetching a single year (~1700 registrants) takes ~10 hours. The full 22-year history (2005–2026) will take several days. To speed up the historical fetch (frozen past years), lower `REQUEST_DELAY` to 0.5s — safe since those filings never change. +- **Running lobbying scripts**: Do NOT use `conda run` with stdout redirect (`> file`) — `conda run` buffers all output through a pipe and the log file stays empty until the process exits. Run Python directly: `/home/nes/miniconda/envs/amend_python/bin/python -u get_MA_lobbying.py` (the `-u` flag ensures unbuffered output). +- **MA lobbying Gemini SDK**: Uses `google-genai` (new SDK, `google.genai`), NOT the old `google-generativeai` package. API: `client = genai.Client(api_key=...)`, then `client.models.embed_content(model='gemini-embedding-2', contents=text, config=types.EmbedContentConfig(output_dimensionality=768))`. +- **MA lobbying Gemini API cost — do not underestimate**: Actual observed cost for `summarize_lobbying_bills.py` is **$0.627/1k bills** (verified June 2026). Output tokens ($2.50/1M) dominate at ~60% of total cost even though output is only ~151 tokens/bill. Prior estimates were off by 6× because they applied the input price ($0.30/1M) to output tokens. Rule of thumb: a one-time backfill of 7k bills ≈ $4.50; 26k bills ≈ $16. Weekly incremental runs (20–50 new bills) ≈ $0.02. Embedding via `gemini-embedding-2` is negligible ($0.20/1M tokens ≈ $0.00015/bill). Always verify estimate against GCP billing console before running a large batch — the API pricing page may show non-GA or pre-discount rates. +- **MA lobbying General Court formula bug (unfixed)**: `get_MA_lobbying.py` uses `FIRST_GC_START_YEAR = 2005` but the 183rd General Court started in 2003, not 2005. The correct constant is `2003`. As a result, every bill's `general_court` assignment is one session too low (year 2024 → GC192 instead of GC193, etc.), and `get_MA_legislature_bills.py` fetches bill text from the wrong legislative session. Fixing this constant and re-running the full pipeline would bring the title match rate from ~2% to ~65%. The remaining ~35% of mismatches are string-normalisation differences or genuinely wrong bill numbers in the SoS portal. See `get_data/NOTES_bill_embeddings.md` for full analysis. ## Running scripts diff --git a/analysis/dashboard_charts.py b/analysis/dashboard_charts.py index 74388a97..361438b5 100644 --- a/analysis/dashboard_charts.py +++ b/analysis/dashboard_charts.py @@ -12,6 +12,11 @@ import ECOS_budgets_viz import EPA_303d_viz import MS4_compliance_viz +try: + import MA_lobbying_viz + _LOBBYING_VIZ_AVAILABLE = True +except ImportError: + _LOBBYING_VIZ_AVAILABLE = False from EEA_DP_CSO_map import CSOAnalysisEEADP PREFIX = 'dash_' @@ -56,3 +61,7 @@ # --- MS4 stormwater compliance charts (3 charts) --- MS4_compliance_viz.generate_charts(engine, prefix=PREFIX) + +# --- Lobbying charts (4 charts; skipped until MA_lobbying_viz.py is available) --- +if _LOBBYING_VIZ_AVAILABLE: + MA_lobbying_viz.generate_charts(engine, prefix=PREFIX) diff --git a/docs/README.md b/docs/README.md index 25e353c6..7cd44c2c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -16,15 +16,20 @@ All data, code for data gathering and cleaning, code for analysis, and web devel ## Datasets {{ site.data.site_config.site_abbrev }} includes a [constantly-growing list of datasets]({{ site.url }}{{ site.baseurl }}/data/index.html) such as: - -* MA state budget information -* MA Department of Environmental Protection (DEP) staffing records -* MA DEP regulatory enforcement actions -* MA 2011 combined sewer overflow (CSO) discharge data -* US Environmental Protection Agency (EPA) Environmental Justice (EJ) community data -* US Environmental Protection Agency (EPA) Region 1 NPDES permits -* US Census and Social Security Administration population and wage data -* EPA 303(d) Integrated List of MA Impaired Waters — waterbodies failing water quality standards (MassGIS, biennial 2010–2022) + +* MA environmental agency budgets (DEP, DCR, EEA; FY2001–present) +* MA DEP staffing records +* MA DEP/EEA enforcement actions (1996–present) +* MA combined sewer overflow (CSO) discharge incidents (2022–present) +* MA municipal stormwater (MS4) annual compliance reports (FY2019–present) +* MA lobbying disclosures — bills, employers, spending (2005–present) +* MA Legislature bill text and passage status (GC183–194) +* EPA 303(d) impaired waters (MassGIS, biennial 2010–2022) +* EPA Region 1 NPDES permits +* EPA EJScreen environmental justice indicators (2017, 2023) +* US Census population and income estimates +* NOAA daily precipitation (Massachusetts) +* ECOS state environmental agency budget survey (FY2009–2023) ## Analysis diff --git a/docs/_includes/charts/dash_MADEP_enforcement_bytype.html b/docs/_includes/charts/dash_MADEP_enforcement_bytype.html index be7ac33a..6dc7945e 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_bytype.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_bytype.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [87, 63, 40, 46, 90, 110, 70, 67, 61, 44, 72, 49, 81, 60, 40, 48, 22, 21, 18, 9, 11, 5, 8, 8, 9, 3], 'label': 'ACO w/o Penalty', 'backgroundColor': 'rgba(31,120,180,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [129, 144, 271, 215, 291, 240, 201, 214, 203, 213, 175, 160, 152, 111, 97, 121, 67, 81, 88, 80, 70, 53, 66, 58, 73, 28], 'label': 'ACO w/ Penalty', 'backgroundColor': 'rgba(166,206,227,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [7, 3, 1, 4, 4, 14, 5, 7, 2, 3, 7, 10, 6, 9, 10, 6, 8, 10, 8, 2, 6, 6, 3, 2, 3, 2], 'label': 'Demand Action', 'backgroundColor': 'rgba(51,160,44,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [1, 0, 0, 16, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'label': 'Federal ACO (PWS)', 'backgroundColor': 'rgba(178,223,138,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [26, 35, 35, 30, 59, 96, 86, 68, 44, 12, 13, 13, 8, 87, 6, 8, 11, 12, 12, 13, 9, 3, 5, 9, 17, 9], 'label': 'Penalty Notice', 'backgroundColor': 'rgba(227,26,28,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [0, 0, 60, 67, 101, 91, 65, 128, 138, 58, 116, 77, 126, 84, 51, 57, 206, 164, 217, 106, 246, 226, 193, 240, 211, 85], 'label': 'Reporting Penalty', 'backgroundColor': 'rgba(253,191,111,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [20, 38, 47, 44, 56, 38, 67, 62, 51, 31, 58, 55, 58, 50, 45, 50, 20, 31, 26, 23, 27, 26, 39, 22, 27, 4], 'label': 'Unilateral Order', 'backgroundColor': 'rgba(202,178,214,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] + datasets: [{'data': [87, 63, 40, 46, 90, 110, 70, 67, 61, 44, 72, 49, 81, 60, 40, 48, 22, 21, 18, 9, 11, 5, 8, 8, 9, 2], 'label': 'ACO w/o Penalty', 'backgroundColor': 'rgba(31,120,180,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [129, 144, 271, 215, 291, 240, 201, 214, 203, 213, 175, 160, 152, 111, 97, 121, 67, 81, 88, 80, 70, 53, 66, 58, 73, 24], 'label': 'ACO w/ Penalty', 'backgroundColor': 'rgba(166,206,227,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [7, 3, 1, 4, 4, 14, 5, 7, 2, 3, 7, 10, 6, 9, 10, 6, 8, 10, 8, 2, 6, 6, 3, 2, 3, 2], 'label': 'Demand Action', 'backgroundColor': 'rgba(51,160,44,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [1, 0, 0, 16, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'label': 'Federal ACO (PWS)', 'backgroundColor': 'rgba(178,223,138,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [26, 35, 35, 30, 59, 96, 86, 68, 44, 12, 13, 13, 8, 87, 6, 8, 11, 12, 12, 13, 9, 3, 5, 9, 17, 9], 'label': 'Penalty Notice', 'backgroundColor': 'rgba(227,26,28,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [0, 0, 60, 67, 101, 91, 65, 128, 138, 58, 116, 77, 126, 84, 51, 57, 206, 164, 217, 106, 246, 226, 193, 240, 211, 82], 'label': 'Reporting Penalty', 'backgroundColor': 'rgba(253,191,111,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [20, 38, 47, 44, 56, 38, 67, 62, 51, 31, 58, 55, 58, 50, 45, 50, 20, 31, 26, 23, 27, 26, 39, 22, 27, 2], 'label': 'Unilateral Order', 'backgroundColor': 'rgba(202,178,214,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MADEP_enforcement_fines_overall.html b/docs/_includes/charts/dash_MADEP_enforcement_fines_overall.html index 16add908..7a24809e 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_fines_overall.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_fines_overall.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [3.11446, 1.826646, 1.938032, 2.62953, 4.837296, 3.59366, 2.889449, 2.110374, 2.301807, 2.109543, 1.786811, 1.337741, 1.368937, 1.900576, 0.902028, 0.706457, 1.193786, 0.953871, 0.969549, 0.683028, 1.672336, 1.053674, 1.035999, 1.300763, 1.419162, 0.665517], 'label': 'Reported penalties', 'backgroundColor': 'rgba(50,50,200,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] + datasets: [{'data': [3.11446, 1.826646, 1.938032, 2.62953, 4.837296, 3.59366, 2.889449, 2.110374, 2.301807, 2.109543, 1.786811, 1.337741, 1.368937, 1.900576, 0.902028, 0.706457, 1.193786, 0.953871, 0.969549, 0.683028, 1.672336, 1.053674, 1.035999, 1.300763, 1.419162, 0.602857], 'label': 'Reported penalties', 'backgroundColor': 'rgba(50,50,200,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MADEP_enforcement_fines_overall_stacked.html b/docs/_includes/charts/dash_MADEP_enforcement_fines_overall_stacked.html index e13056f6..35d31db9 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_fines_overall_stacked.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_fines_overall_stacked.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [1.1, 0.2905, 0.09, 0.108, 0.30432, 0.18, 0.175095, 0.085, 0.125, 0.137, 0.22211, 0.063725, 0.15, 0.54, 0.053299, 0.068613, 0.101, 0.085342, 0.06725, 0.07508, 0.1, 0.13356, 0.114969, 0.16614, 0.095434, 0.08615], 'label': 'Rank #1 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.3, 0.185, 0.09, 0.101926, 0.25, 0.1479, 0.094275, 0.063, 0.105535, 0.109875, 0.054938, 0.053937, 0.049747, 0.07475, 0.04306, 0.04558, 0.06725, 0.073575, 0.06, 0.071688, 0.099875, 0.08117, 0.05718, 0.101005, 0.08217, 0.072688], 'label': 'Rank #2 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [0.1575, 0.1, 0.09, 0.076, 0.25, 0.138, 0.09, 0.050412, 0.082188, 0.109464, 0.054916, 0.053937, 0.046412, 0.067541, 0.040473, 0.0255, 0.06725, 0.062098, 0.0425, 0.044413, 0.098004, 0.07795, 0.053938, 0.08231, 0.071513, 0.05629], 'label': 'Rank #3 penalty of the year', 'backgroundColor': 'rgba(178,223,138)'},{'data': [0.121, 0.085, 0.07325, 0.068613, 0.22325, 0.11906, 0.080586, 0.046413, 0.055937, 0.10223, 0.054714, 0.05, 0.04, 0.060725, 0.036775, 0.024332, 0.067142, 0.061725, 0.03922, 0.025, 0.08381, 0.073688, 0.04325, 0.072104, 0.071513, 0.051895], 'label': 'Rank #4 penalty of the year', 'backgroundColor': 'rgba(51,160,44)'},{'data': [0.085, 0.065625, 0.065625, 0.0675, 0.22, 0.11541, 0.06925, 0.04052, 0.054938, 0.1, 0.04913, 0.04625, 0.035185, 0.054895, 0.0311, 0.021994, 0.063478, 0.051938, 0.034, 0.01953, 0.0803, 0.052, 0.04, 0.06725, 0.05771, 0.04391], 'label': 'Rank #5 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.075, 0.05, 0.064975, 0.067, 0.175, 0.101663, 0.061125, 0.037625, 0.053937, 0.062546, 0.0435, 0.040178, 0.03, 0.05175, 0.030218, 0.02, 0.053, 0.0345, 0.03381, 0.019513, 0.06986, 0.048055, 0.03998, 0.05855, 0.04698, 0.023573], 'label': 'Rank #6 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [0.0625, 0.045, 0.064, 0.058, 0.1566, 0.101623, 0.059747, 0.03693, 0.053437, 0.047562, 0.041235, 0.038783, 0.028795, 0.0488, 0.02816, 0.019269, 0.049, 0.03, 0.030208, 0.0176, 0.06725, 0.0345, 0.031014, 0.05815, 0.04, 0.022], 'label': 'Rank #7 penalty of the year', 'backgroundColor': 'rgba(178,223,138)'},{'data': [0.058, 0.045, 0.05625, 0.05625, 0.1, 0.075, 0.05636, 0.036532, 0.053437, 0.045413, 0.03915, 0.033, 0.028795, 0.044, 0.025875, 0.016789, 0.045585, 0.03, 0.03, 0.015, 0.064074, 0.028201, 0.02834, 0.048563, 0.035403, 0.02156], 'label': 'Rank #8 penalty of the year', 'backgroundColor': 'rgba(51,160,44)'},{'data': [0.0525, 0.03675, 0.0525, 0.05625, 0.074183, 0.075, 0.055959, 0.0345, 0.05, 0.032909, 0.0351, 0.03075, 0.0266, 0.042, 0.025, 0.015375, 0.038608, 0.03, 0.0273, 0.014, 0.05855, 0.025255, 0.025, 0.03, 0.03103, 0.0215], 'label': 'Rank #9 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.05, 0.033, 0.0525, 0.05625, 0.065356, 0.066209, 0.055414, 0.033625, 0.048648, 0.0325, 0.033315, 0.029575, 0.025875, 0.037625, 0.020817, 0.015, 0.03737, 0.029904, 0.025, 0.013758, 0.053938, 0.02386, 0.0225, 0.03, 0.030754, 0.020208], 'label': 'Rank #10 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [1.03996, 0.887671, 1.215332, 1.893741, 2.997687, 2.43408, 2.006688, 1.621627, 1.61265, 1.189504, 1.052181, 0.822011, 0.906928, 0.755285, 0.519711, 0.330975, 0.600843, 0.463789, 0.553815, 0.352156, 0.893955, 0.475435, 0.577828, 0.566441, 0.769807, 0.244743], 'label': 'All other penalties (ranks 11+)', 'backgroundColor': 'rgba(200,200,200,0.7)'}] + datasets: [{'data': [1.1, 0.2905, 0.09, 0.108, 0.30432, 0.18, 0.175095, 0.085, 0.125, 0.137, 0.22211, 0.063725, 0.15, 0.54, 0.053299, 0.068613, 0.101, 0.085342, 0.06725, 0.07508, 0.1, 0.13356, 0.114969, 0.16614, 0.095434, 0.08615], 'label': 'Rank #1 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.3, 0.185, 0.09, 0.101926, 0.25, 0.1479, 0.094275, 0.063, 0.105535, 0.109875, 0.054938, 0.053937, 0.049747, 0.07475, 0.04306, 0.04558, 0.06725, 0.073575, 0.06, 0.071688, 0.099875, 0.08117, 0.05718, 0.101005, 0.08217, 0.072688], 'label': 'Rank #2 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [0.1575, 0.1, 0.09, 0.076, 0.25, 0.138, 0.09, 0.050412, 0.082188, 0.109464, 0.054916, 0.053937, 0.046412, 0.067541, 0.040473, 0.0255, 0.06725, 0.062098, 0.0425, 0.044413, 0.098004, 0.07795, 0.053938, 0.08231, 0.071513, 0.05629], 'label': 'Rank #3 penalty of the year', 'backgroundColor': 'rgba(178,223,138)'},{'data': [0.121, 0.085, 0.07325, 0.068613, 0.22325, 0.11906, 0.080586, 0.046413, 0.055937, 0.10223, 0.054714, 0.05, 0.04, 0.060725, 0.036775, 0.024332, 0.067142, 0.061725, 0.03922, 0.025, 0.08381, 0.073688, 0.04325, 0.072104, 0.071513, 0.051895], 'label': 'Rank #4 penalty of the year', 'backgroundColor': 'rgba(51,160,44)'},{'data': [0.085, 0.065625, 0.065625, 0.0675, 0.22, 0.11541, 0.06925, 0.04052, 0.054938, 0.1, 0.04913, 0.04625, 0.035185, 0.054895, 0.0311, 0.021994, 0.063478, 0.051938, 0.034, 0.01953, 0.0803, 0.052, 0.04, 0.06725, 0.05771, 0.04391], 'label': 'Rank #5 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.075, 0.05, 0.064975, 0.067, 0.175, 0.101663, 0.061125, 0.037625, 0.053937, 0.062546, 0.0435, 0.040178, 0.03, 0.05175, 0.030218, 0.02, 0.053, 0.0345, 0.03381, 0.019513, 0.06986, 0.048055, 0.03998, 0.05855, 0.04698, 0.022], 'label': 'Rank #6 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [0.0625, 0.045, 0.064, 0.058, 0.1566, 0.101623, 0.059747, 0.03693, 0.053437, 0.047562, 0.041235, 0.038783, 0.028795, 0.0488, 0.02816, 0.019269, 0.049, 0.03, 0.030208, 0.0176, 0.06725, 0.0345, 0.031014, 0.05815, 0.04, 0.02156], 'label': 'Rank #7 penalty of the year', 'backgroundColor': 'rgba(178,223,138)'},{'data': [0.058, 0.045, 0.05625, 0.05625, 0.1, 0.075, 0.05636, 0.036532, 0.053437, 0.045413, 0.03915, 0.033, 0.028795, 0.044, 0.025875, 0.016789, 0.045585, 0.03, 0.03, 0.015, 0.064074, 0.028201, 0.02834, 0.048563, 0.035403, 0.0215], 'label': 'Rank #8 penalty of the year', 'backgroundColor': 'rgba(51,160,44)'},{'data': [0.0525, 0.03675, 0.0525, 0.05625, 0.074183, 0.075, 0.055959, 0.0345, 0.05, 0.032909, 0.0351, 0.03075, 0.0266, 0.042, 0.025, 0.015375, 0.038608, 0.03, 0.0273, 0.014, 0.05855, 0.025255, 0.025, 0.03, 0.03103, 0.020208], 'label': 'Rank #9 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.05, 0.033, 0.0525, 0.05625, 0.065356, 0.066209, 0.055414, 0.033625, 0.048648, 0.0325, 0.033315, 0.029575, 0.025875, 0.037625, 0.020817, 0.015, 0.03737, 0.029904, 0.025, 0.013758, 0.053938, 0.02386, 0.0225, 0.03, 0.030754, 0.02], 'label': 'Rank #10 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [1.03996, 0.887671, 1.215332, 1.893741, 2.997687, 2.43408, 2.006688, 1.621627, 1.61265, 1.189504, 1.052181, 0.822011, 0.906928, 0.755285, 0.519711, 0.330975, 0.600843, 0.463789, 0.553815, 0.352156, 0.893955, 0.475435, 0.577828, 0.566441, 0.769807, 0.186656], 'label': 'All other penalties (ranks 11+)', 'backgroundColor': 'rgba(200,200,200,0.7)'}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MADEP_enforcement_overall.html b/docs/_includes/charts/dash_MADEP_enforcement_overall.html index 7cf9f372..ac12665f 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_overall.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_overall.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [270, 283, 454, 422, 605, 590, 495, 546, 499, 361, 441, 364, 431, 401, 249, 290, 334, 319, 369, 233, 369, 319, 314, 339, 340, 131], 'label': 'Number of enforcements', 'backgroundColor': 'rgba(50,50,200,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] + datasets: [{'data': [270, 283, 454, 422, 605, 590, 495, 546, 499, 361, 441, 364, 431, 401, 249, 290, 334, 319, 369, 233, 369, 319, 314, 339, 340, 121], 'label': 'Number of enforcements', 'backgroundColor': 'rgba(50,50,200,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MADEP_enforcement_vsbudget.html b/docs/_includes/charts/dash_MADEP_enforcement_vsbudget.html index 14dd2018..0e0d6fa2 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_vsbudget.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_vsbudget.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [270, 283, 454, 422, 605, 590, 495, 546, 499, 361, 441, 364, 431, 401, 249, 290, 334, 319, 369, 233, 369, 319, 314, 339, 340, 131], 'label': 'Number of enforcements', 'backgroundColor': 'rgba(50,50,50,0.5)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'stack': 'annual', 'yAxisID': 'y'},{'data': [67.61507253270285, 64.03117821821397, 59.11452060906299, 55.13552970897133, 53.630970557496916, 54.50080651757284, 58.826813693302746, 58.78877609579202, 62.23068521836106, 49.673112547145536, 41.78850458160208, 38.896872431563395, 40.40385917341901, 42.60722184875473, 42.11776213526644, 42.389451355941304, 34.751856419563936, 33.12920736760928, 37.60870536390118, 40.28206302422945, 46.254922289813294, 36.60585418435639, 47.59754731934593, 52.038191, null, null], 'label': 'DEP administrative budget', 'borderColor': '#ff7f0e', 'fill': false, 'borderWidth': 2, 'stack': 'annual', 'type': 'line', 'yAxisID': 'y1'}] + datasets: [{'data': [270, 283, 454, 422, 605, 590, 495, 546, 499, 361, 441, 364, 431, 401, 249, 290, 334, 319, 369, 233, 369, 319, 314, 339, 340, 121], 'label': 'Number of enforcements', 'backgroundColor': 'rgba(50,50,50,0.5)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'stack': 'annual', 'yAxisID': 'y'},{'data': [67.61507253270285, 64.03117821821397, 59.11452060906299, 55.13552970897133, 53.630970557496916, 54.50080651757284, 58.826813693302746, 58.78877609579202, 62.23068521836106, 49.673112547145536, 41.78850458160208, 38.896872431563395, 40.40385917341901, 42.60722184875473, 42.11776213526644, 42.389451355941304, 34.751856419563936, 33.12920736760928, 37.60870536390118, 40.28206302422945, 46.254922289813294, 36.60585418435639, 47.59754731934593, 52.038191, null, null], 'label': 'DEP administrative budget', 'borderColor': '#ff7f0e', 'fill': false, 'borderWidth': 2, 'stack': 'annual', 'type': 'line', 'yAxisID': 'y1'}] }, type: 'line', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LINGISOPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LINGISOPCT.html index 109b9314..7638c2ba 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LINGISOPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LINGISOPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079847909, y: null}, {x: 0.118055556, y: null}, {x: 0.0, y: null}, {x: 0.017647059, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103585657, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081967213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.093729}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031034483, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015151515, y: null}, {x: 0.0, y: null}, {x: 0.012211669, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030075188, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014534884, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061068702, y: null}, {x: 0.054151625, y: null}, {x: 0.0, y: null}, {x: 0.058091286, y: null}, {x: 0.0, y: null}, {x: 0.02507837, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023210832, y: null}, {x: 0.04610951, y: null}, {x: 0.033530572, y: null}, {x: 0.075471698, y: null}, {x: 0.0, y: null}, {x: 0.067114094, y: null}, {x: 0.060185185, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025706941, y: null}, {x: 0.19544592, y: null}, {x: 0.0, y: null}, {x: 0.046692607, y: null}, {x: 0.029761905, y: null}, {x: 0.0, y: null}, {x: 0.313311688, y: null}, {x: 0.054973822, y: null}, {x: 0.07, y: null}, {x: 0.056057866, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051319648, y: null}, {x: 0.036885246, y: null}, {x: 0.098613251, y: null}, {x: 0.012465374, y: null}, {x: 0.040106952, y: null}, {x: 0.0, y: null}, {x: 0.011363636, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.084684685, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047516199, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042723632, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029673591, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066083576, y: null}, {x: 0.015662651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055913978, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014634146, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034175334, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024930748, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009638554, y: null}, {x: 0.006882312, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.215231788, y: null}, {x: 0.119047619, y: null}, {x: 0.195348837, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.03219697, y: null}, {x: 0.016330451, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040425532, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036613272, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04035309, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.064615385, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043902439, y: null}, {x: 0.0, y: null}, {x: 0.050531915, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.087962963, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007670182, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051369863, y: null}, {x: 0.0, y: null}, {x: 0.060301508, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.175}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015957447, y: null}, {x: 0.038076152, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040506329, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015781923, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.006329114, y: null}, {x: 0.0, y: null}, {x: 0.029821074, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029739777, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.003372681, y: null}, {x: 0.010498688, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004830918, y: null}, {x: 0.021680217, y: null}, {x: 0.007894737, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.006289308, y: null}, {x: 0.042056075, y: null}, {x: 0.0, y: null}, {x: 0.022727273, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034662045, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020761246, y: null}, {x: 0.0, y: null}, {x: 0.018549747, y: null}, {x: 0.01270648, y: null}, {x: 0.067919075, y: null}, {x: 0.0, y: null}, {x: 0.020942408, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019512195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095011876, y: null}, {x: 0.061583578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015974441, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036170213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019345238, y: null}, {x: 0.00908059, y: null}, {x: 0.019047619, y: null}, {x: 0.092257002, y: null}, {x: 0.0, y: null}, {x: 0.199434229, y: null}, {x: 0.108108108, y: null}, {x: 0.141695703, y: null}, {x: 0.139573071, y: null}, {x: 0.0, y: null}, {x: 0.044067797, y: null}, {x: 0.117370892, y: null}, {x: 0.049360146, y: null}, {x: 0.102756892, y: null}, {x: 0.04952381, y: null}, {x: 0.170160296, y: 33.039}, {x: 0.009884679, y: null}, {x: 0.131929047, y: null}, {x: 0.074349442, y: null}, {x: 0.139215686, y: null}, {x: 0.048648649, y: null}, {x: 0.040540541, y: null}, {x: 0.043737575, y: null}, {x: 0.0625, y: null}, {x: 0.018556701, y: null}, {x: 0.020491803, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019900498, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045540797, y: null}, {x: 0.0, y: null}, {x: 0.014111007, y: null}, {x: 0.0, y: null}, {x: 0.01396648, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015437393, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.032723773, y: null}, {x: 0.042124542, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03087886, y: null}, {x: 0.0, y: null}, {x: 0.01994302, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095070423, y: null}, {x: 0.027210884, y: null}, {x: 0.108108108, y: null}, {x: 0.081705151, y: null}, {x: 0.0, y: null}, {x: 0.017305315, y: null}, {x: 0.022556391, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050785973, y: null}, {x: 0.066957787, y: null}, {x: 0.136279926, y: null}, {x: 0.010233918, y: null}, {x: 0.013057671, y: null}, {x: 0.0, y: null}, {x: 0.12244898, y: null}, {x: 0.030716724, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059418458, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 999.999999}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038054968, y: null}, {x: 0.027415144, y: null}, {x: 0.013800425, y: null}, {x: 0.082289803, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040816327, y: null}, {x: 0.015576324, y: null}, {x: 0.0, y: null}, {x: 0.128947368, y: null}, {x: 0.188679245, y: null}, {x: 0.28708134, y: null}, {x: 0.030237581, y: null}, {x: 0.120567376, y: null}, {x: 0.152027027, y: null}, {x: 0.083435583, y: null}, {x: 0.347107438, y: null}, {x: 0.192622951, y: null}, {x: 0.147386461, y: null}, {x: 0.128099174, y: 95.803564}, {x: 0.01863354, y: null}, {x: 0.058894231, y: 1904.333217}, {x: 0.231638418, y: null}, {x: 0.212250712, y: null}, {x: 0.097196262, y: 33.812967}, {x: 0.105263158, y: null}, {x: 0.104316547, y: null}, {x: 0.03988604, y: null}, {x: 0.186246418, y: 13.403297}, {x: 0.196940727, y: null}, {x: 0.159192825, y: null}, {x: 0.045553145, y: null}, {x: 0.241473397, y: null}, {x: 0.040540541, y: null}, {x: 0.083333333, y: null}, {x: 0.0, y: null}, {x: 0.097457627, y: null}, {x: 0.204678363, y: null}, {x: 0.135802469, y: null}, {x: 0.027726433, y: null}, {x: 0.0, y: null}, {x: 0.065764023, y: null}, {x: 0.227876106, y: null}, {x: 0.221719457, y: null}, {x: 0.096428571, y: null}, {x: 0.013071895, y: 29.512963}, {x: 0.309692671, y: null}, {x: 0.22979798, y: null}, {x: 0.088607595, y: null}, {x: 0.040229885, y: null}, {x: 0.11976631, y: null}, {x: 0.186813187, y: null}, {x: 0.403669725, y: null}, {x: 0.100719425, y: null}, {x: 0.213793103, y: null}, {x: 0.253144654, y: null}, {x: 0.157389635, y: null}, {x: 0.37755102, y: null}, {x: 0.1, y: null}, {x: 0.210648148, y: null}, {x: 0.22923588, y: null}, {x: 0.0, y: null}, {x: 0.012531328, y: null}, {x: 0.0848, y: null}, {x: 0.089552239, y: null}, {x: 0.085850556, y: null}, {x: 0.103529412, y: null}, {x: 0.102824859, y: null}, {x: 0.0, y: null}, {x: 0.092913386, y: null}, {x: 0.043103448, y: null}, {x: 0.053921569, y: null}, {x: 0.053191489, y: null}, {x: 0.154929578, y: 292.744127}, {x: 0.122651934, y: 194.570504}, {x: 0.05786802, y: 443.440785}, {x: 0.046641791, y: null}, {x: 0.0, y: null}, {x: 0.054373522, y: null}, {x: 0.112798265, y: null}, {x: 0.064606742, y: null}, {x: 0.016627078, y: null}, {x: 0.016091954, y: null}, {x: 0.14739229, y: null}, {x: 0.0, y: null}, {x: 0.004728132, y: null}, {x: 0.103117506, y: null}, {x: 0.067969414, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012300123, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.102362205, y: null}, {x: 0.0, y: null}, {x: 0.02907916, y: null}, {x: 0.0, y: null}, {x: 0.061173533, y: null}, {x: 0.03131524, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039827772, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.139664805, y: null}, {x: 0.076487252, y: null}, {x: 0.024679171, y: null}, {x: 0.017191977, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043814433, y: null}, {x: 0.164242943, y: null}, {x: 0.032490975, y: null}, {x: 0.042414356, y: null}, {x: 0.102244389, y: null}, {x: 0.0, y: null}, {x: 0.017751479, y: null}, {x: 0.145320197, y: null}, {x: 0.061425061, y: null}, {x: 0.050632911, y: null}, {x: 0.0, y: 0.12512}, {x: 0.058394161, y: null}, {x: 0.249283668, y: null}, {x: 0.007936508, y: 5.77926}, {x: 0.030651341, y: null}, {x: 0.048387097, y: null}, {x: 0.100649351, y: null}, {x: 0.161616162, y: null}, {x: 0.114854518, y: null}, {x: 0.144787645, y: null}, {x: 0.177156177, y: null}, {x: 0.368421053, y: null}, {x: 0.0, y: null}, {x: 0.131715771, y: 734.949067}, {x: 0.371937639, y: null}, {x: 0.145631068, y: null}, {x: 0.212707182, y: null}, {x: 0.337209302, y: null}, {x: 0.288416076, y: null}, {x: 0.311111111, y: null}, {x: 0.148, y: null}, {x: 0.080882353, y: null}, {x: 0.058823529, y: null}, {x: 0.026159334, y: null}, {x: 0.0, y: null}, {x: 0.120665742, y: null}, {x: 0.294117647, y: null}, {x: 0.074404762, y: null}, {x: 0.0, y: null}, {x: 0.090707965, y: null}, {x: 0.455555556, y: 11.58294}, {x: 0.226821192, y: null}, {x: 0.123595506, y: 71.329358}, {x: 0.008196721, y: null}, {x: 0.267898383, y: null}, {x: 0.044334975, y: null}, {x: 0.08, y: null}, {x: 0.060240964, y: null}, {x: 0.014423077, y: null}, {x: 0.133333333, y: null}, {x: 0.009208103, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027027027, y: null}, {x: 0.026258206, y: null}, {x: 0.109028961, y: null}, {x: 0.019642857, y: null}, {x: 0.192810458, y: null}, {x: 0.05974026, y: null}, {x: 0.170068027, y: 148.959479}, {x: 0.306779661, y: null}, {x: 0.035460993, y: null}, {x: 0.204481793, y: null}, {x: 0.052730697, y: null}, {x: 0.018329939, y: null}, {x: 0.198275862, y: null}, {x: 0.158, y: null}, {x: 0.013806706, y: null}, {x: 0.068131868, y: null}, {x: 0.046218487, y: null}, {x: 0.430084746, y: null}, {x: 0.128888889, y: null}, {x: 0.088737201, y: null}, {x: 0.271367521, y: null}, {x: 0.236768802, y: 291.200847}, {x: 0.063366337, y: null}, {x: 0.159857904, y: null}, {x: 0.155778895, y: null}, {x: 0.226832642, y: 123.559491}, {x: 0.078740157, y: null}, {x: 0.387533875, y: 253.998766}, {x: 0.084858569, y: 25.889026}, {x: 0.18556701, y: null}, {x: 0.067961165, y: 32.36738}, {x: 0.025695931, y: 54.925090000000004}, {x: 0.257668712, y: null}, {x: 0.09221902, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.062740077, y: null}, {x: 0.101960784, y: null}, {x: 0.019067797, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02970297, y: null}, {x: 0.058823529, y: null}, {x: 0.103686636, y: null}, {x: 0.009535161, y: null}, {x: 0.0, y: null}, {x: 0.099455041, y: null}, {x: 0.038369305, y: null}, {x: 0.0, y: null}, {x: 0.043956044, y: null}, {x: 0.021615472, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039624609, y: null}, {x: 0.0, y: 40.416186}, {x: 0.009328358, y: null}, {x: 0.0, y: null}, {x: 0.036144578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019851117, y: null}, {x: 0.174418605, y: null}, {x: 0.010309278, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013157895, y: null}, {x: 0.0, y: null}, {x: 0.002805049, y: null}, {x: 0.0, y: null}, {x: 0.02259887, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.144021739, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.159793814, y: null}, {x: 0.073412698, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.119533528, y: null}, {x: 0.037783375, y: null}, {x: 0.0, y: null}, {x: 0.033045977, y: null}, {x: 0.0, y: null}, {x: 0.026923077, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 1.80788}, {x: 0.031823745, y: null}, {x: 0.014285714, y: null}, {x: 0.0, y: null}, {x: 0.01650165, y: null}, {x: 0.0, y: null}, {x: 0.113402062, y: null}, {x: 0.080178174, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.175496689, y: null}, {x: 0.287895311, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059952038, y: 1.335464}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03180212, y: null}, {x: 0.092178771, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034090909, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009210526, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033834586, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.072}, {x: 0.013307985, y: null}, {x: 0.0, y: null}, {x: 0.014925373, y: null}, {x: 0.053221289, y: null}, {x: 0.0, y: null}, {x: 0.036474164, y: null}, {x: 0.046943231, y: null}, {x: 0.02907489, y: null}, {x: 0.0, y: null}, {x: 0.153465347, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.271186441, y: null}, {x: 0.395348837, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.298219585, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011056511, y: null}, {x: 0.043568465, y: null}, {x: 0.073083779, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044736842, y: null}, {x: 0.110070258, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.345102506, y: null}, {x: 0.040636042, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.098654709, y: null}, {x: 0.08361204, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.174556213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059701493, y: null}, {x: 0.274011299, y: null}, {x: 0.237435009, y: null}, {x: 0.307692308, y: null}, {x: 0.039215686, y: null}, {x: 0.083850932, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.073474471, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046590909, y: null}, {x: 0.214814815, y: null}, {x: 0.120734908, y: null}, {x: 0.138235294, y: null}, {x: 0.063917526, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: 32.512411}, {x: 0.168639053, y: null}, {x: 0.340206186, y: null}, {x: 0.308016878, y: null}, {x: 0.077862595, y: null}, {x: 0.051212938, y: null}, {x: 0.161572052, y: null}, {x: 0.213219616, y: null}, {x: 0.333333333, y: null}, {x: 0.456839309, y: null}, {x: 0.498771499, y: null}, {x: 0.25498008, y: null}, {x: 0.180376611, y: null}, {x: 0.148688047, y: null}, {x: 0.232704403, y: null}, {x: 0.078397213, y: null}, {x: 0.220657277, y: null}, {x: 0.0, y: null}, {x: 0.327536232, y: null}, {x: 0.050847458, y: null}, {x: 0.104081633, y: null}, {x: 0.115566038, y: null}, {x: 0.0, y: null}, {x: 0.415857605, y: null}, {x: 0.029279279, y: null}, {x: 0.024299065, y: null}, {x: 0.046070461, y: null}, {x: 0.142023346, y: null}, {x: 0.176043557, y: null}, {x: 0.159914712, y: null}, {x: 0.095723014, y: null}, {x: 0.389140272, y: null}, {x: 0.286858974, y: null}, {x: 0.40066778, y: null}, {x: 0.26973027, y: null}, {x: 0.54351145, y: null}, {x: 0.066478076, y: null}, {x: 0.203324808, y: 144.338492}, {x: 0.548148148, y: null}, {x: 0.242378049, y: null}, {x: 0.24, y: null}, {x: 0.405867971, y: null}, {x: 0.24173028, y: null}, {x: 0.130630631, y: null}, {x: 0.107936508, y: null}, {x: 0.31147541, y: null}, {x: 0.0, y: null}, {x: 0.063732929, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.058659218, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.07244898, y: null}, {x: 0.0, y: null}, {x: 0.012254902, y: null}, {x: 0.049222798, y: null}, {x: 0.21448468, y: null}, {x: 0.064085447, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020378457, y: null}, {x: 0.0, y: null}, {x: 0.143884892, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02739726, y: null}, {x: 0.0, y: null}, {x: 0.050827423, y: null}, {x: 0.020044543, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012793177, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030241935, y: null}, {x: 0.015358362, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009463722, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033846154, y: null}, {x: 0.035233161, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.077272727, y: null}, {x: 0.031578947, y: null}, {x: 0.045177045, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061251664, y: null}, {x: 0.041666667, y: null}, {x: 0.097201767, y: null}, {x: 0.088669951, y: null}, {x: 0.156316917, y: null}, {x: 0.016556291, y: null}, {x: 0.120111732, y: null}, {x: 0.021806854, y: null}, {x: 0.292479109, y: null}, {x: 0.148648649, y: null}, {x: 0.125454546, y: null}, {x: 0.0, y: null}, {x: 0.129411765, y: null}, {x: 0.011450382, y: null}, {x: 0.0, y: null}, {x: 0.020632737, y: null}, {x: 0.062374245, y: null}, {x: 0.0, y: null}, {x: 0.024608501, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.06779661, y: null}, {x: 0.056798623, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.01547619, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05794702, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02905569, y: null}, {x: 0.042416452, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02994012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030188679, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.191964286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050675676, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025405787, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.093959732, y: null}, {x: 0.097560976, y: null}, {x: 0.111380145, y: null}, {x: 0.051437216, y: null}, {x: 0.0, y: null}, {x: 0.10940919, y: null}, {x: 0.0, y: null}, {x: 0.134790528, y: null}, {x: 0.07173913, y: null}, {x: 0.17679558, y: null}, {x: 0.04551201, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01980198, y: null}, {x: 0.0, y: null}, {x: 0.084168337, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015911873, y: null}, {x: 0.0, y: null}, {x: 0.0215311, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.89}, {x: 0.0, y: null}, {x: 0.05372617, y: null}, {x: 0.041728763, y: null}, {x: 0.0, y: 0.18}, {x: 0.010158014, y: null}, {x: 0.00872818, y: 0.276}, {x: 0.016997167, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045133992, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.393442623, y: 176.54059600000002}, {x: 0.313210849, y: null}, {x: 0.116154873, y: null}, {x: 0.157360406, y: null}, {x: 0.050802139, y: null}, {x: 0.314855876, y: null}, {x: 0.424802111, y: null}, {x: 0.183098592, y: null}, {x: 0.418367347, y: null}, {x: 0.422619048, y: null}, {x: 0.258205689, y: null}, {x: 0.413294798, y: null}, {x: 0.294478528, y: null}, {x: 0.405353729, y: null}, {x: 0.200371058, y: null}, {x: 0.574870912, y: null}, {x: 0.405759162, y: null}, {x: 0.213618158, y: null}, {x: 0.379248658, y: null}, {x: 0.479041916, y: null}, {x: 0.071782178, y: null}, {x: 0.057654076, y: null}, {x: 0.14978903, y: null}, {x: 0.0, y: null}, {x: 0.541052632, y: null}, {x: 0.607709751, y: null}, {x: 0.45026178, y: 6.126247}, {x: 0.252115059, y: null}, {x: 0.497360085, y: null}, {x: 0.120274914, y: null}, {x: 0.521052632, y: null}, {x: 0.500703235, y: null}, {x: 0.526734926, y: null}, {x: 0.18579235, y: null}, {x: 0.296482412, y: null}, {x: 0.357045144, y: null}, {x: 0.080701754, y: null}, {x: 0.212454213, y: null}, {x: 0.069637883, y: null}, {x: 0.317391304, y: null}, {x: 0.255681818, y: null}, {x: 0.154074074, y: null}, {x: 0.0, y: null}, {x: 0.285053929, y: null}, {x: 0.089403974, y: 38.4927}, {x: 0.323453608, y: null}, {x: 0.505555556, y: null}, {x: 0.41509434, y: null}, {x: 0.034696406, y: null}, {x: 0.368852459, y: null}, {x: 0.419161677, y: null}, {x: 0.261029412, y: null}, {x: 0.027075812, y: null}, {x: 0.225531915, y: null}, {x: 0.158995816, y: null}, {x: 0.021505376, y: null}, {x: 0.043478261, y: null}, {x: 0.0, y: null}, {x: 0.04505814, y: null}, {x: 0.031746032, y: null}, {x: 0.0, y: null}, {x: 0.030405405, y: null}, {x: 0.124444444, y: null}, {x: 0.013513514, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.196261682, y: null}, {x: 0.096267191, y: null}, {x: 0.0, y: null}, {x: 0.375930521, y: null}, {x: 0.067209776, y: null}, {x: 0.104417671, y: null}, {x: 0.131294964, y: null}, {x: 0.19851577, y: null}, {x: 0.001146789, y: null}, {x: 0.0, y: null}, {x: 0.037735849, y: null}, {x: 0.007352941, y: null}, {x: 0.021881838, y: null}, {x: 0.018126888, y: null}, {x: 0.132743363, y: null}, {x: 0.140625, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.01426025, y: null}, {x: 0.0, y: null}, {x: 0.014440433, y: null}, {x: 0.0, y: null}, {x: 0.067857143, y: null}, {x: 0.024203822, y: null}, {x: 0.128787879, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095923261, y: null}, {x: 0.051792829, y: null}, {x: 0.036649215, y: 57.7297}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068877551, y: null}, {x: 0.0, y: null}, {x: 0.090517241, y: null}, {x: 0.0, y: null}, {x: 0.025, y: null}, {x: 0.018281536, y: null}, {x: 0.041564792, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010752688, y: null}, {x: 0.024793388, y: null}, {x: 0.035714286, y: null}, {x: 0.0, y: null}, {x: 0.025536261, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.049865229, y: null}, {x: 0.076458753, y: null}, {x: 0.0, y: null}, {x: 0.010028653, y: null}, {x: 0.028358209, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068571429, y: null}, {x: 0.0, y: null}, {x: 0.040966387, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.070921986, y: null}, {x: 0.19005102, y: null}, {x: 0.017797553, y: null}, {x: 0.031088083, y: null}, {x: 0.13452381, y: null}, {x: 0.102848101, y: 26.852272}, {x: 0.179584121, y: 17.432869}, {x: 0.0, y: null}, {x: 0.068759342, y: null}, {x: 0.07135362, y: 2.114101}, {x: 0.041050903, y: null}, {x: 0.03030303, y: 27.576203}, {x: 0.0, y: null}, {x: 0.013227513, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02698145, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022222222, y: null}, {x: 0.080357143, y: null}, {x: 0.029328288, y: 9.574524}, {x: 0.029020556, y: null}, {x: 0.092996556, y: null}, {x: 0.025984252, y: 17.33541}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.060263653, y: null}, {x: 0.041407867, y: null}, {x: 0.02685624, y: 19.605847}, {x: 0.0, y: null}, {x: 0.0, y: 0.363247}, {x: 0.0, y: null}, {x: 0.0, y: 51.7282}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019886364, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035714286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029216467, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092417062, y: null}, {x: 0.0, y: null}, {x: 0.029100529, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02238806, y: null}, {x: 0.0, y: null}, {x: 0.034862385, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005813953, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043715847, y: null}, {x: 0.0, y: null}, {x: 0.061349693, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027855153, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010373444, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.00166113, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004914005, y: null}, {x: 0.015177066, y: null}, {x: 0.00486618, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.751364}, {x: 0.0, y: null}, {x: 0.044280443, y: null}, {x: 0.0, y: null}, {x: 0.020979021, y: null}, {x: 0.0, y: 0.6538919999999999}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01174743, y: null}, {x: 0.051020408, y: null}, {x: 0.056179775, y: null}, {x: 0.037837838, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034050179, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018987342, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033854167, y: null}, {x: 0.082191781, y: null}, {x: 0.056689342, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.056737589, y: null}, {x: 0.132183908, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043478261, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04375, y: null}, {x: 0.068597561, y: null}, {x: 0.038636364, y: null}, {x: 0.028257457, y: null}, {x: 0.029275809, y: null}, {x: 0.194936709, y: 19.621000000000002}, {x: 0.152487962, y: null}, {x: 0.078125, y: null}, {x: 0.0, y: null}, {x: 0.097759674, y: null}, {x: 0.0, y: null}, {x: 0.045584046, y: null}, {x: 0.072056239, y: null}, {x: 0.034068136, y: null}, {x: 0.196946565, y: null}, {x: 0.091445428, y: null}, {x: 0.12, y: null}, {x: 0.194274029, y: null}, {x: 0.387096774, y: null}, {x: 0.0, y: null}, {x: 0.033138402, y: null}, {x: 0.234899329, y: null}, {x: 0.378980892, y: null}, {x: 0.138121547, y: null}, {x: 0.0, y: null}, {x: 0.461038961, y: null}, {x: 0.365296804, y: null}, {x: 0.3866171, y: null}, {x: 0.397333333, y: null}, {x: 0.372657111, y: 37.631}, {x: 0.383193277, y: null}, {x: 0.434782609, y: null}, {x: 0.371034483, y: null}, {x: 0.445409429, y: null}, {x: 0.146907217, y: null}, {x: 0.393715342, y: 739.527068}, {x: 0.111904762, y: null}, {x: 0.666666667, y: null}, {x: 0.288537549, y: null}, {x: 0.259668508, y: null}, {x: 0.053380783, y: null}, {x: 0.340694006, y: null}, {x: 0.288590604, y: null}, {x: 0.145390071, y: null}, {x: 0.0, y: null}, {x: 0.122370937, y: null}, {x: 0.384863124, y: null}, {x: 0.04735376, y: null}, {x: 0.218818381, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065843621, y: null}, {x: 0.056451613, y: null}, {x: 0.031311155, y: null}, {x: 0.0, y: null}, {x: 0.216572505, y: null}, {x: 0.019354839, y: null}, {x: 0.140661939, y: null}, {x: 0.084337349, y: null}, {x: 0.0, y: null}, {x: 0.024390244, y: null}, {x: 0.0, y: null}, {x: 0.008517888, y: null}, {x: 0.072463768, y: null}, {x: 0.05015674, y: null}, {x: 0.040816327, y: null}, {x: 0.0, y: null}, {x: 0.019571295, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.072897196, y: null}, {x: 0.019354839, y: null}, {x: 0.063218391, y: null}, {x: 0.088495575, y: null}, {x: 0.02393617, y: null}, {x: 0.161691542, y: null}, {x: 0.228813559, y: null}, {x: 0.0, y: null}, {x: 0.070680628, y: null}, {x: 0.165441177, y: null}, {x: 0.077647059, y: null}, {x: 0.13986014, y: null}, {x: 0.422360248, y: null}, {x: 0.206422018, y: null}, {x: 0.105571848, y: 27.040660999999997}, {x: 0.188592456, y: 81.680767}, {x: 0.413510747, y: null}, {x: 0.20046083, y: null}, {x: 0.428571429, y: null}, {x: 0.203045685, y: 198.331469}, {x: 0.29924812, y: null}, {x: 0.28, y: null}, {x: 0.186813187, y: null}, {x: 0.081081081, y: null}, {x: 0.02811245, y: null}, {x: 0.11036036, y: null}, {x: 0.144249513, y: null}, {x: 0.0, y: null}, {x: 0.11409396, y: 7.279}, {x: 0.234939759, y: null}, {x: 0.107594937, y: null}, {x: 0.12716763, y: null}, {x: 0.066907776, y: null}, {x: 0.33037037, y: null}, {x: 0.159217877, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068527919, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005444646, y: null}, {x: 0.0, y: null}, {x: 0.052631579, y: null}, {x: 0.022260274, y: null}, {x: 0.158024691, y: null}, {x: 0.0, y: null}, {x: 0.036666667, y: null}, {x: 0.030998852, y: null}, {x: 0.0, y: null}, {x: 0.072580645, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020151134, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010416667, y: null}, {x: 0.101851852, y: null}, {x: 0.270114943, y: null}, {x: 0.21669627, y: null}, {x: 0.135514019, y: null}, {x: 0.108555658, y: null}, {x: 0.0, y: null}, {x: 0.04107425, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024619841, y: null}, {x: 0.0, y: null}, {x: 0.116357504, y: null}, {x: 0.0, y: null}, {x: 0.026064292, y: null}, {x: 0.0, y: 1.005625}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.206597222, y: null}, {x: 0.016806723, y: 21.590654999999998}, {x: 0.147426982, y: 2.36377}, {x: 0.066964286, y: null}, {x: 0.07518797, y: 69.454067}, {x: 0.096774194, y: null}, {x: 0.084337349, y: null}, {x: 0.0, y: null}, {x: 0.077389985, y: null}, {x: 0.0, y: null}, {x: 0.058103976, y: null}, {x: 0.0, y: null}, {x: 0.029484029, y: null}, {x: 0.037135279, y: 4.023005}, {x: 0.039622642, y: null}, {x: 0.0, y: 15.273601}, {x: 0.0, y: null}, {x: 0.115027829, y: null}, {x: 0.145762712, y: null}, {x: 0.224274406, y: null}, {x: 0.253507014, y: 17.667698}, {x: 0.035816619, y: 130.09780700000002}, {x: 0.034782609, y: null}, {x: 0.020030817, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.08531746, y: null}, {x: 0.0, y: null}, {x: 0.036333609, y: 98.279335}, {x: 0.0, y: 0.465397}, {x: 0.0, y: null}, {x: 0.031141869, y: null}, {x: 0.029166667, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.4325, y: null}, {x: 0.333333333, y: null}, {x: 0.175324675, y: null}, {x: 0.294117647, y: null}, {x: 0.394822007, y: null}, {x: 0.551020408, y: 1.850684}, {x: 0.314049587, y: null}, {x: 0.444210526, y: null}, {x: 0.637288136, y: 211.675397}, {x: 0.362391034, y: null}, {x: 0.043037975, y: null}, {x: 0.225433526, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.326424871, y: null}, {x: 0.0, y: 106.444359}, {x: 0.051980198, y: 2.454447}, {x: 0.0, y: null}, {x: 0.616045845, y: null}, {x: 0.0, y: null}, {x: 0.317021277, y: null}, {x: 0.0, y: null}, {x: 0.080513419, y: null}, {x: 0.0, y: null}, {x: 0.068877551, y: null}, {x: 0.025, y: null}, {x: 0.027554535, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 617.717181}, {x: 0.152697095, y: 0.620762}, {x: 0.104095563, y: null}, {x: 0.044502618, y: null}, {x: 0.136, y: null}, {x: 0.147663551, y: null}, {x: 0.113128492, y: null}, {x: 0.0, y: null}, {x: 0.092964824, y: null}, {x: 0.104347826, y: null}, {x: 0.048494983, y: null}, {x: 0.0, y: null}, {x: 0.011483254, y: null}, {x: 0.0, y: null}, {x: 0.109808102, y: null}, {x: 0.054580897, y: null}, {x: 0.056390977, y: null}, {x: 0.136729223, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.06405694, y: null}, {x: 0.0, y: null}, {x: 0.041269841, y: null}, {x: 0.065830721, y: null}, {x: 0.028571429, y: null}, {x: 0.098360656, y: null}, {x: 0.0, y: null}, {x: 0.169745958, y: null}, {x: 0.05106383, y: null}, {x: 0.01621074, y: null}, {x: 0.0, y: null}, {x: 0.0975, y: null}, {x: 0.0, y: null}, {x: 0.027687296, y: null}, {x: 0.0, y: null}, {x: 0.079457364, y: null}, {x: 0.0, y: null}, {x: 0.058503401, y: null}, {x: 0.118243243, y: null}, {x: 0.201298701, y: null}, {x: 0.011655012, y: null}, {x: 0.049618321, y: null}, {x: 0.060457516, y: null}, {x: 0.017958412, y: null}, {x: 0.0, y: null}, {x: 0.009198423, y: null}, {x: 0.0, y: null}, {x: 0.095744681, y: null}, {x: 0.092105263, y: null}, {x: 0.008323424, y: null}, {x: 0.009485095, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007207207, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047277937, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026986507, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.086350975, y: null}, {x: 0.0, y: null}, {x: 0.011695906, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041884817, y: null}, {x: 0.081836327, y: null}, {x: 0.0, y: null}, {x: 0.043363995, y: null}, {x: 0.088039867, y: 385.927118}, {x: 0.0, y: 2.816}, {x: 0.0, y: null}, {x: 0.014880952, y: null}, {x: 0.020737327, y: null}, {x: 0.0, y: null}, {x: 0.028037383, y: null}, {x: 0.007692308, y: null}, {x: 0.008695652, y: null}, {x: 0.007374631, y: null}, {x: 0.063694268, y: null}, {x: 0.0, y: null}, {x: 0.020089286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046328671, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025562372, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010596026, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018739353, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031190926, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009208103, y: null}, {x: 0.048582996, y: null}, {x: 0.084291188, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028753994, y: null}, {x: 0.0, y: null}, {x: 0.014371257, y: null}, {x: 0.138592751, y: null}, {x: 0.04587156, y: null}, {x: 0.0, y: null}, {x: 0.030888031, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036423841, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052313883, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007326007, y: null}, {x: 0.089866157, y: null}, {x: 0.057971014, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041860465, y: null}, {x: 0.105263158, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026109661, y: null}, {x: 0.02189781, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032225579, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.45}, {x: 0.005896226, y: null}, {x: 0.071618037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041499331, y: null}, {x: 0.016393443, y: null}, {x: 0.093706294, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039840637, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.108739837, y: null}, {x: 0.0, y: null}, {x: 0.048635824, y: null}, {x: 0.028391167, y: null}, {x: 0.0, y: null}, {x: 0.046312178, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045454545, y: null}, {x: 0.0, y: null}, {x: 0.023584906, y: 5e-05}, {x: 0.036328872, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017201835, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065306122, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038596491, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022075055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02173913, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.283557047, y: null}, {x: 0.181008902, y: null}, {x: 0.066528067, y: null}, {x: 0.164930556, y: null}, {x: 0.168814433, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2479.88946}, {x: 0.098404255, y: null}, {x: 0.037931034, y: null}, {x: 0.040723982, y: null}, {x: 0.130091984, y: null}, {x: 0.100574713, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061403509, y: null}, {x: 0.032258065, y: 482.90002}, {x: 0.226337449, y: null}, {x: 0.384615385, y: 67.833}, {x: 0.033587786, y: null}, {x: 0.009708738, y: null}, {x: 0.047453704, y: null}, {x: 0.154175589, y: null}, {x: 0.076142132, y: null}, {x: 0.015513126, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.091286307, y: null}, {x: 0.052469136, y: null}, {x: 0.0, y: 55.29}, {x: 0.221350079, y: null}, {x: 0.09929078, y: null}, {x: 0.12, y: null}, {x: 0.025449102, y: null}, {x: 0.141426784, y: null}, {x: 0.124620061, y: null}, {x: 0.186440678, y: null}, {x: 0.152866242, y: null}, {x: 0.080392157, y: null}, {x: 0.096774194, y: null}, {x: 0.108, y: null}, {x: 0.097027972, y: null}, {x: 0.0, y: null}, {x: 0.177062374, y: null}, {x: 0.094302554, y: null}, {x: 0.097069597, y: null}, {x: 0.083333333, y: null}, {x: 0.02739726, y: null}, {x: 0.0, y: null}, {x: 0.08852459, y: null}, {x: 0.127937337, y: null}, {x: 0.089595376, y: null}, {x: 0.121212121, y: null}, {x: 0.235602094, y: null}, {x: 0.060085837, y: null}, {x: 0.252045827, y: null}, {x: 0.473229706, y: null}, {x: 0.166904422, y: null}, {x: 0.113333333, y: null}, {x: 0.209109731, y: null}, {x: 0.082474227, y: null}, {x: 0.076335878, y: null}, {x: 0.125, y: null}, {x: 0.071343639, y: null}, {x: 0.196202532, y: null}, {x: 0.152866242, y: null}, {x: 0.07204611, y: null}, {x: 0.152597403, y: null}, {x: 0.070826307, y: null}, {x: 0.062034739, y: null}, {x: 0.09375, y: 199.24}, {x: 0.144537815, y: null}, {x: 0.036697248, y: 654.51638}, {x: 0.0, y: null}, {x: 0.056626506, y: null}, {x: 0.02090209, y: null}, {x: 0.138576779, y: null}, {x: 0.0, y: null}, {x: 0.08681672, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054151625, y: null}, {x: 0.073394495, y: null}, {x: 0.0, y: null}, {x: 0.042553191, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039045553, y: null}, {x: 0.0, y: null}, {x: 0.020604396, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030769231, y: null}, {x: 0.01912261, y: null}, {x: 0.142857143, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045908184, y: null}, {x: 0.0, y: null}, {x: 0.009950249, y: null}, {x: 0.021321962, y: null}, {x: 0.037698413, y: null}, {x: 0.0, y: null}, {x: 0.01302682, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023782559, y: null}, {x: 0.028497409, y: null}, {x: 0.014851485, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02303263, y: null}, {x: 0.032335329, y: null}, {x: 0.024305556, y: null}, {x: 0.053030303, y: null}, {x: 0.026845638, y: null}, {x: 0.013774105, y: null}, {x: 0.024875622, y: null}, {x: 0.0, y: null}, {x: 0.016363636, y: null}, {x: 0.0, y: null}, {x: 0.04445919, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055194805, y: null}, {x: 0.0, y: null}, {x: 0.051204819, y: null}, {x: 0.0, y: null}, {x: 0.025280899, y: null}, {x: 0.016081871, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034574468, y: 396.4304}, {x: 0.058035714, y: null}, {x: 0.107189543, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023776224, y: null}, {x: 0.01773399, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.070205479, y: null}, {x: 0.073226545, y: null}, {x: 0.032520325, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0110957, y: null}, {x: 0.0, y: null}, {x: 0.031591738, y: null}, {x: 0.105263158, y: null}, {x: 0.031165312, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02851711, y: null}, {x: 0.02154195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02640264, y: null}, {x: 0.010526316, y: null}, {x: 0.0, y: null}, {x: 0.016472868, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017951426, y: null}, {x: 0.061417323, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051239669, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046483909, y: null}, {x: 0.054464286, y: null}, {x: 0.172032193, y: null}, {x: 0.0, y: null}, {x: 0.085843373, y: null}, {x: 0.045346062, y: null}, {x: 0.06779661, y: null}, {x: 0.215025907, y: null}, {x: 0.0, y: null}, {x: 0.07106599, y: null}, {x: 0.110228401, y: null}, {x: 0.178913738, y: null}, {x: 0.173370319, y: null}, {x: 0.0, y: null}, {x: 0.044267877, y: null}, {x: 0.045555556, y: null}, {x: 0.236588721, y: null}, {x: 0.0, y: null}, {x: 0.012974052, y: null}, {x: 0.107773852, y: null}, {x: 0.0, y: null}, {x: 0.150621118, y: null}, {x: 0.168122271, y: null}, {x: 0.064814815, y: null}, {x: 0.055624227, y: null}, {x: 0.063786008, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.127576055, y: null}, {x: 0.075647668, y: null}, {x: 0.077596996, y: null}, {x: 0.0, y: null}, {x: 0.076358297, y: null}, {x: 0.034343434, y: null}, {x: 0.057057057, y: null}, {x: 0.144927536, y: null}, {x: 0.0, y: null}, {x: 0.033762058, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017507724, y: null}, {x: 0.0, y: null}, {x: 0.070707071, y: null}, {x: 0.018404908, y: null}, {x: 0.003333333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040449438, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029411765, y: null}, {x: 0.0, y: null}, {x: 0.024128686, y: null}, {x: 0.0, y: null}, {x: 0.125748503, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020289855, y: null}, {x: 0.011627907, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040449438, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02006689, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066576087, y: null}, {x: 0.0, y: null}, {x: 0.037313433, y: null}, {x: 0.0, y: null}, {x: 0.041778976, y: null}, {x: 0.0, y: null}, {x: 0.026359143, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011350738, y: null}, {x: 0.0, y: null}, {x: 0.042253521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040629096, y: null}, {x: 0.0, y: null}, {x: 0.021818182, y: null}, {x: 0.0, y: null}, {x: 0.040451552, y: null}, {x: 0.0, y: null}, {x: 0.039235412, y: null}, {x: 0.0, y: null}, {x: 0.031847134, y: null}, {x: 0.07217695, y: null}, {x: 0.046218487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033444816, y: null}, {x: 0.0, y: null}, {x: 0.024523161, y: null}, {x: 0.0, y: null}, {x: 0.017348203, y: null}, {x: 0.022749753, y: null}, {x: 0.032432432, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0456621, y: null}, {x: 0.091743119, y: null}, {x: 0.0, y: null}, {x: 0.117546848, y: null}, {x: 0.106854839, y: null}, {x: 0.080445545, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043052838, y: null}, {x: 0.0, y: null}, {x: 0.057522124, y: null}, {x: 0.034482759, y: null}, {x: 0.061983471, y: null}, {x: 0.177014531, y: null}, {x: 0.068846816, y: null}, {x: 0.050824176, y: null}, {x: 0.086007702, y: null}, {x: 0.0, y: null}, {x: 0.022807018, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032653061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046476762, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052447552, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089403974, y: null}, {x: 0.0, y: null}, {x: 0.081300813, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04954955, y: null}, {x: 0.042168675, y: null}, {x: 0.02266289, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016528926, y: null}, {x: 0.037878788, y: null}, {x: 0.0, y: null}, {x: 0.036655212, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089576547, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.073684211, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.069767442, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092819615, y: null}, {x: 0.0, y: null}, {x: 0.102902375, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046218487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026, y: null}, {x: 0.0, y: null}, {x: 0.126394052, y: null}, {x: 0.035514019, y: null}, {x: 0.0, y: null}, {x: 0.021943574, y: null}, {x: 0.268571429, y: null}, {x: 0.150980392, y: null}, {x: 0.062962963, y: null}, {x: 0.0, y: null}, {x: 0.027240773, y: null}, {x: 0.0, y: null}, {x: 0.041753653, y: null}, {x: 0.010954617, y: null}, {x: 0.0, y: null}, {x: 0.205250597, y: null}, {x: 0.041666667, y: null}, {x: 0.0, y: null}, {x: 0.045375218, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017886179, y: null}, {x: 0.016042781, y: null}, {x: 0.0, y: null}, {x: 0.015765766, y: null}, {x: 0.0, y: null}, {x: 0.012131716, y: null}, {x: 0.070866142, y: null}, {x: 0.0, y: null}, {x: 0.107186358, y: null}, {x: 0.0, y: null}, {x: 0.086378738, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.129120879, y: null}, {x: 0.0, y: null}, {x: 0.013333333, y: null}, {x: 0.066225166, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017716535, y: null}, {x: 0.024615385, y: null}, {x: 0.125490196, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.078703704, y: null}, {x: 0.0, y: null}, {x: 0.030092593, y: null}, {x: 0.023593466, y: null}, {x: 0.0, y: null}, {x: 0.05952381, y: null}, {x: 0.144262295, y: null}, {x: 0.009153318, y: null}, {x: 0.253333333, y: null}, {x: 0.021479714, y: null}, {x: 0.0, y: 68.97}, {x: 0.0, y: null}, {x: 0.06244087, y: null}, {x: 0.041980624, y: null}, {x: 0.141356256, y: null}, {x: 0.261538462, y: null}, {x: 0.0, y: null}, {x: 0.185654008, y: null}, {x: 0.0, y: null}, {x: 0.054054054, y: null}, {x: 0.034, y: null}, {x: 0.0, y: null}, {x: 0.289198606, y: null}, {x: 0.097402597, y: null}, {x: 0.103658537, y: null}, {x: 0.048442907, y: null}, {x: 0.279835391, y: null}, {x: 0.1, y: null}, {x: 0.038888889, y: null}, {x: 0.095823096, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.107526882, y: null}, {x: 0.207627119, y: null}, {x: 0.096618357, y: null}, {x: 0.288359788, y: null}, {x: 0.120262391, y: null}, {x: 0.0, y: null}, {x: 0.169102297, y: null}, {x: 0.567708333, y: null}, {x: 0.107623318, y: null}, {x: 0.119533528, y: null}, {x: 0.339250493, y: null}, {x: 0.14973262, y: null}, {x: 0.199416342, y: null}, {x: 0.108391608, y: null}, {x: 0.242307692, y: null}, {x: 0.234722222, y: null}, {x: 0.134490239, y: null}, {x: 0.302752294, y: null}, {x: 0.326446281, y: null}, {x: 0.209265176, y: null}, {x: 0.131355932, y: null}, {x: 0.145557656, y: null}, {x: 0.056603774, y: null}, {x: 0.35971223, y: null}, {x: 0.125874126, y: null}, {x: 0.206997085, y: null}, {x: 0.329949239, y: null}, {x: 0.0, y: null}, {x: 0.089655172, y: null}, {x: 0.084536082, y: null}, {x: 0.053398058, y: null}, {x: 0.0, y: null}, {x: 0.10989011, y: null}, {x: 0.0, y: null}, {x: 0.128113879, y: null}, {x: 0.281368821, y: null}, {x: 0.206543967, y: null}, {x: 0.143872114, y: null}, {x: 0.338666667, y: null}, {x: 0.041158537, y: null}, {x: 0.219435737, y: null}, {x: 0.533333333, y: null}, {x: 0.415708812, y: null}, {x: 0.33481153, y: null}, {x: 0.082733813, y: null}, {x: 0.082758621, y: null}, {x: 0.043973941, y: null}, {x: 0.168301887, y: null}, {x: 0.061290323, y: null}, {x: 0.059278351, y: null}, {x: 0.13898917, y: null}, {x: 0.0, y: null}, {x: 0.241883117, y: null}, {x: 0.0, y: null}, {x: 0.2375, y: null}, {x: 0.188010899, y: null}, {x: 0.14004914, y: null}, {x: 0.205128205, y: null}, {x: 0.144249513, y: null}, {x: 0.174285714, y: null}, {x: 0.233031674, y: null}, {x: 0.565995526, y: null}, {x: 0.235588972, y: null}, {x: 0.265346535, y: null}, {x: 0.174447174, y: null}, {x: 0.225913621, y: null}, {x: 0.033557047, y: null}, {x: 0.127586207, y: null}, {x: 0.190476191, y: null}, {x: 0.177902622, y: null}, {x: 0.281437126, y: null}, {x: 0.114722753, y: null}, {x: 0.00805153, y: null}, {x: 0.407079646, y: null}, {x: 0.022222222, y: null}, {x: 0.0, y: null}, {x: 0.172222222, y: null}, {x: 0.292134832, y: null}, {x: 0.0, y: null}, {x: 0.297235023, y: null}, {x: 0.044585987, y: null}, {x: 0.227083333, y: null}, {x: 0.064467766, y: null}, {x: 0.0, y: null}, {x: 0.335044929, y: null}, {x: 0.189937107, y: null}, {x: 0.166666667, y: null}, {x: 0.102199224, y: null}, {x: 0.168949772, y: null}, {x: 0.181514477, y: null}, {x: 0.054522924, y: null}, {x: 0.279094828, y: null}, {x: 0.0, y: null}, {x: 0.058479532, y: null}, {x: 0.227891157, y: null}, {x: 0.058585859, y: null}, {x: 0.065810594, y: null}, {x: 0.119587629, y: null}, {x: 0.126470588, y: null}, {x: 0.01399689, y: null}, {x: 0.06744868, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018759019, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042654028, y: null}, {x: 0.0, y: null}, {x: 0.034246575, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046065259, y: null}, {x: 0.063291139, y: null}, {x: 0.070422535, y: null}, {x: 0.206235012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.091883614, y: null}, {x: 0.0, y: null}, {x: 0.032319392, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.235294118, y: null}, {x: 0.024475524, y: null}, {x: 0.0, y: null}, {x: 0.1, y: null}, {x: 0.06271777, y: null}, {x: 0.11786372, y: null}, {x: 0.0, y: null}, {x: 0.018108652, y: null}, {x: 0.0, y: null}, {x: 0.099576271, y: null}, {x: 0.072115385, y: null}, {x: 0.0, y: null}, {x: 0.092063492, y: null}, {x: 0.0203125, y: null}, {x: 0.0, y: null}, {x: 0.096064815, y: null}, {x: 0.140186916, y: null}, {x: 0.057507987, y: null}, {x: 0.319248826, y: null}, {x: 0.139616056, y: null}, {x: 0.116838488, y: null}, {x: 0.23015873, y: null}, {x: 0.205128205, y: null}, {x: 0.088888889, y: null}, {x: 0.152097902, y: null}, {x: 0.172523962, y: null}, {x: 0.019704434, y: null}, {x: 0.0, y: null}, {x: 0.016203704, y: null}, {x: 0.164300203, y: null}, {x: 0.35483871, y: null}, {x: 0.019047619, y: null}, {x: 0.067385445, y: null}, {x: 0.122147651, y: null}, {x: 0.029374202, y: 2.8}, {x: 0.066066066, y: null}, {x: 0.083160083, y: null}, {x: 0.012987013, y: null}, {x: 0.0, y: null}, {x: 0.118568233, y: null}, {x: 0.119122257, y: null}, {x: 0.001658375, y: null}, {x: 0.01971831, y: null}, {x: 0.060273973, y: null}, {x: 0.013808976, y: null}, {x: 0.030075188, y: null}, {x: 0.268336315, y: null}, {x: 0.075496689, y: null}, {x: 0.0, y: null}, {x: 0.011612903, y: null}, {x: 0.052066116, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.104770017, y: null}, {x: 0.017045455, y: null}, {x: 0.0, y: null}, {x: 1.0, y: null}, {x: 0.0, y: null}, {x: 0.033868093, y: null}, {x: 0.01793722, y: null}, {x: 0.089552239, y: null}, {x: 0.0, y: null}, {x: 0.070818071, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.098880597, y: null}, {x: 0.0, y: null}, {x: 0.17791411, y: null}, {x: 0.123123123, y: null}, {x: 0.085889571, y: null}, {x: 0.04665826, y: null}, {x: 0.074168798, y: null}, {x: 0.090686275, y: null}, {x: 0.050420168, y: null}, {x: 0.067961165, y: null}, {x: 0.0, y: null}, {x: 0.010830325, y: null}, {x: 0.020522388, y: null}, {x: 0.104874446, y: null}, {x: 0.066176471, y: null}, {x: 0.017333333, y: 1.38}, {x: 0.0, y: null}, {x: 0.061269147, y: 3.71}, {x: 0.0, y: null}, {x: 0.061389338, y: null}, {x: 0.03021978, y: null}, {x: 0.022140221, y: null}, {x: 0.0, y: null}, {x: 0.036036036, y: null}, {x: 0.016227181, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.048628429, y: null}, {x: 0.03931848, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.159045726, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.058551618, y: null}, {x: 0.098214286, y: null}, {x: 0.105849582, y: null}, {x: 0.10701107, y: null}, {x: 0.014925373, y: null}, {x: 0.124590164, y: null}, {x: 0.462857143, y: null}, {x: 0.062761506, y: null}, {x: 0.016563147, y: null}, {x: 0.029059829, y: 1.975}, {x: 0.021276596, y: null}, {x: 0.0, y: null}, {x: 0.022788204, y: null}, {x: 0.026578073, y: 45.306}, {x: 0.055319149, y: null}, {x: 0.177747626, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085889571, y: null}, {x: 0.0, y: null}, {x: 0.177446103, y: null}, {x: 0.0, y: null}, {x: 0.150214592, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081850534, y: null}, {x: 0.0, y: null}, {x: 0.030405405, y: null}, {x: 0.07660021, y: null}, {x: 0.0, y: null}, {x: 0.025510204, y: null}, {x: 0.073359073, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055155875, y: null}, {x: 0.181488203, y: null}, {x: 0.010404624, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.149405773, y: 12.033039}, {x: 0.005181347, y: null}, {x: 0.127272727, y: null}, {x: 0.050179211, y: null}, {x: 0.09765625, y: null}, {x: 0.0, y: null}, {x: 0.060869565, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061806656, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095823096, y: null}, {x: 0.015831135, y: null}, {x: 0.035591274, y: null}, {x: 0.0, y: null}, {x: 0.125766871, y: null}, {x: 0.025796662, y: null}, {x: 0.016304348, y: null}, {x: 0.025575448, y: null}, {x: 0.016574586, y: null}, {x: 0.0, y: null}, {x: 0.017605634, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016835017, y: null}, {x: 0.065217391, y: null}, {x: 0.048913043, y: null}, {x: 0.176211454, y: null}, {x: 0.073015873, y: null}, {x: 0.099236641, y: null}, {x: 0.15727003, y: null}, {x: 0.02739726, y: null}, {x: 0.020881671, y: null}, {x: 0.0, y: null}, {x: 0.068627451, y: null}, {x: 0.108108108, y: null}, {x: 0.051118211, y: null}, {x: 0.0, y: null}, {x: 0.015904573, y: null}, {x: 0.106145251, y: null}, {x: 0.029680365, y: null}, {x: 0.071261682, y: null}, {x: 0.021683673, y: null}, {x: 0.0, y: null}, {x: 0.053511706, y: null}, {x: 0.116483517, y: null}, {x: 0.0, y: null}, {x: 0.041666667, y: null}, {x: 0.0, y: null}, {x: 0.019133938, y: null}, {x: 0.191964286, y: null}, {x: 0.0, y: null}, {x: 0.022088353, y: null}, {x: 0.110552764, y: null}, {x: 0.033898305, y: null}, {x: 0.193415638, y: null}, {x: 0.023809524, y: null}, {x: 0.0, y: null}, {x: 0.009977827, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035532995, y: null}, {x: 0.0, y: null}, {x: 0.032478632, y: null}, {x: 0.0, y: null}, {x: 0.0176, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055610725, y: null}, {x: 0.030144168, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045364892, y: null}, {x: 0.135635019, y: null}, {x: 0.0, y: null}, {x: 0.018808777, y: null}, {x: 0.0, y: null}, {x: 0.047445255, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066596195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019083969, y: null}, {x: 0.040816327, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042016807, y: null}, {x: 0.0, y: null}, {x: 0.017204301, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021252796, y: null}, {x: 0.03892944, y: null}, {x: 0.0, y: null}, {x: 0.038043478, y: null}, {x: 0.113960114, y: 0.0117}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.181598063, y: null}, {x: 0.0625, y: null}, {x: 0.121666667, y: null}, {x: 0.032608696, y: null}, {x: 0.027600849, y: null}, {x: 0.053380783, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038709677, y: null}, {x: 0.016949153, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074410163, y: null}, {x: 0.0, y: null}, {x: 0.056666667, y: null}, {x: 0.038265306, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025878004, y: null}, {x: 0.020262217, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015189873, y: null}, {x: 0.025974026, y: null}, {x: 0.043956044, y: null}, {x: 0.031862745, y: null}, {x: 0.011293635, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.056603774, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071969697, y: null}, {x: 0.111111111, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061046512, y: null}, {x: 0.021505376, y: null}, {x: 0.0, y: null}, {x: 0.040235525, y: null}, {x: 0.05631068, y: null}, {x: 0.017932489, y: null}, {x: 0.085343228, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043026706, y: null}, {x: 0.0, y: null}, {x: 0.054279749, y: null}, {x: 0.192949907, y: null}, {x: 0.0, y: null}, {x: 0.135542169, y: null}, {x: 0.048598131, y: null}, {x: 0.018571429, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042654028, y: null}, {x: 0.040066778, y: null}, {x: 0.024324324, y: null}, {x: 0.062982005, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103752759, y: null}, {x: 0.081845238, y: null}, {x: 0.0, y: null}, {x: 0.104056437, y: null}, {x: 0.201818182, y: null}, {x: 0.243291592, y: null}, {x: 0.01641791, y: null}, {x: 0.017944535, y: null}, {x: 0.030864198, y: null}, {x: 0.05399061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026086957, y: null}, {x: 0.10310559, y: null}, {x: 0.331125828, y: null}, {x: 0.061583578, y: null}, {x: 0.0, y: null}, {x: 0.027027027, y: null}, {x: 0.035066505, y: null}, {x: 0.086633663, y: null}, {x: 0.023722628, y: null}, {x: 0.022900763, y: null}, {x: 0.0, y: null}, {x: 0.025824964, y: null}, {x: 0.0, y: null}, {x: 0.056818182, y: null}, {x: 0.10567297, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057957682, y: null}, {x: 0.083687943, y: null}, {x: 0.011111111, y: null}, {x: 0.012844037, y: null}, {x: 0.014975042, y: null}, {x: 0.0, y: null}, {x: 0.024024024, y: null}, {x: 0.020454545, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025500911, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.276422764, y: null}, {x: 0.152466368, y: null}, {x: 0.0, y: null}, {x: 0.145958987, y: null}, {x: 0.0, y: null}, {x: 0.059090909, y: null}, {x: 0.076502732, y: null}, {x: 0.056089744, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035532995, y: null}, {x: 0.08852459, y: null}, {x: 0.205702648, y: null}, {x: 0.142642643, y: null}, {x: 0.0, y: null}, {x: 0.020771513, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.161001789, y: null}, {x: 0.031100478, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018617021, y: null}, {x: 0.018292683, y: null}, {x: 0.018789144, y: null}, {x: 0.01312336, y: null}, {x: 0.0, y: null}, {x: 0.051580699, y: null}, {x: 0.0, y: null}, {x: 0.021176471, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032894737, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032537961, y: null}, {x: 0.0, y: null}, {x: 0.009287926, y: null}, {x: 0.093959732, y: null}, {x: 0.082512315, y: null}, {x: 0.037105751, y: null}, {x: 0.120840631, y: null}, {x: 0.0, y: null}, {x: 0.034013605, y: null}, {x: 0.072727273, y: null}, {x: 0.043256997, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.07773386, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.049557522, y: null}, {x: 0.058181818, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041474654, y: null}, {x: 0.020618557, y: null}, {x: 0.0, y: null}, {x: 0.021164021, y: null}, {x: 0.028537455, y: null}, {x: 0.0, y: null}, {x: 0.153164557, y: null}, {x: 0.069767442, y: null}, {x: 0.013133208, y: null}, {x: 0.092631579, y: null}, {x: 0.010309278, y: null}, {x: 0.026392962, y: null}, {x: 0.027950311, y: null}, {x: 0.022988506, y: null}, {x: 0.038095238, y: null}, {x: 0.026200873, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035447761, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040735874, y: null}, {x: 0.046224961, y: null}, {x: 0.0, y: null}, {x: 0.052401747, y: null}, {x: 0.023746702, y: null}, {x: 0.0, y: null}, {x: 0.19126506, y: null}, {x: 0.0, y: null}, {x: 0.135379061, y: null}, {x: 0.203947368, y: null}, {x: 0.028571429, y: null}, {x: 0.198501873, y: null}, {x: 0.052238806, y: null}, {x: 0.065902579, y: null}, {x: 0.099778271, y: null}, {x: 0.019522777, y: null}, {x: 0.276061776, y: null}, {x: 0.452012384, y: null}, {x: 0.480591497, y: null}, {x: 0.325551232, y: null}, {x: 0.177613321, y: null}, {x: 0.243243243, y: null}, {x: 0.156989247, y: null}, {x: 0.149321267, y: null}, {x: 0.03950104, y: null}, {x: 0.440438872, y: null}, {x: 0.0, y: null}, {x: 0.300636943, y: null}, {x: 0.0, y: null}, {x: 0.247552448, y: null}, {x: 0.516778524, y: null}, {x: 0.132764921, y: null}, {x: 0.128484849, y: null}, {x: 0.027227723, y: null}, {x: 0.182149363, y: null}, {x: 0.016620499, y: null}, {x: 0.056338028, y: null}, {x: 0.018018018, y: null}, {x: 0.158227848, y: null}, {x: 0.203791469, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054982818, y: null}, {x: 0.039055404, y: null}, {x: 0.051873199, y: null}, {x: 0.0, y: null}, {x: 0.127596439, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.158730159, y: null}, {x: 0.059196617, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.161048689, y: null}, {x: 0.0, y: null}, {x: 0.145748988, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039792388, y: null}, {x: 0.0, y: null}, {x: 0.027272727, y: null}, {x: 0.059440559, y: null}, {x: 0.0, y: null}, {x: 0.146084337, y: null}, {x: 0.005167959, y: null}, {x: 0.057443366, y: null}, {x: 0.046632124, y: null}, {x: 0.029147982, y: null}, {x: 0.0202977, y: null}, {x: 0.052111411, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081534772, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079726651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076595745, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050200803, y: null}, {x: 0.0, y: null}, {x: 0.033126294, y: null}, {x: 0.0, y: null}, {x: 0.015572859, y: 0.0002}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.27458493, y: null}, {x: 0.120224719, y: null}, {x: 0.176100629, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024577573, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029498525, y: null}, {x: 0.0, y: null}, {x: 0.086021505, y: null}, {x: 0.0, y: null}, {x: 0.14861461, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.18839779, y: null}, {x: 0.379174853, y: null}, {x: 0.059067358, y: null}, {x: 0.0, y: null}, {x: 0.067547724, y: null}, {x: 0.103852596, y: null}, {x: 0.069990412, y: null}, {x: 0.052258636, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02688172, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040251572, y: null}, {x: 0.011220196, y: null}, {x: 0.047619048, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092213115, y: null}, {x: 0.045676998, y: null}, {x: 0.0, y: null}, {x: 0.019202363, y: null}, {x: 0.0, y: null}, {x: 0.078677309, y: null}, {x: 0.26446281, y: null}, {x: 0.086614173, y: null}, {x: 0.329113924, y: null}, {x: 0.012048193, y: null}, {x: 0.049535604, y: null}, {x: 0.036101083, y: null}, {x: 0.10786802, y: null}, {x: 0.029950083, y: null}, {x: 0.0, y: null}, {x: 0.019920319, y: null}, {x: 0.057471264, y: null}, {x: 0.015325671, y: null}, {x: 0.03514377, y: null}, {x: 0.020887728, y: null}, {x: 0.169642857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.078651685, y: null}, {x: 0.021403092, y: null}, {x: 0.017045455, y: null}, {x: 0.044834308, y: null}, {x: 0.0, y: null}, {x: 0.035087719, y: null}, {x: 0.025330396, y: null}, {x: 0.055162659, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076986755, y: null}, {x: 0.050847458, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012461059, y: null}, {x: 0.0, y: null}, {x: 0.120792079, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016320475, y: null}, {x: 0.011535049, y: null}, {x: 0.0, y: null}, {x: 0.065934066, y: null}, {x: 0.085981308, y: null}, {x: 0.0, y: null}, {x: 0.024705882, y: null}, {x: 0.0, y: null}, {x: 0.022288262, y: null}, {x: 0.037585421, y: null}, {x: 0.066066066, y: null}, {x: 0.011142061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.123493976, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076923077, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012787724, y: null}, {x: 0.113402062, y: null}, {x: 0.051212938, y: null}, {x: 0.0, y: null}, {x: 0.096491228, y: null}, {x: 0.0, y: null}, {x: 0.041580042, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033738192, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013875124, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.222222222, y: null}, {x: 0.0, y: null}, {x: 0.053497942, y: null}, {x: 0.147914033, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.152671756, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051807229, y: null}, {x: 0.046070461, y: null}, {x: 0.0, y: null}, {x: 0.027372263, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031858407, y: null}, {x: 0.10090703, y: null}, {x: 0.066539924, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004716981, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014705882, y: null}, {x: 0.040268456, y: null}, {x: 0.0, y: null}, {x: 0.031104199, y: null}, {x: 0.055393586, y: null}, {x: 0.011795544, y: null}, {x: 0.0, y: null}, {x: 0.016260163, y: null}, {x: 0.0, y: null}, {x: 0.048920863, y: null}, {x: 0.106598985, y: null}, {x: 0.0, y: null}, {x: 0.030816641, y: null}, {x: 0.0, y: null}, {x: 0.10741688, y: null}, {x: 0.030534351, y: null}, {x: 0.18579235, y: null}, {x: 0.0, y: null}, {x: 0.049360146, y: null}, {x: 0.111111111, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046511628, y: null}, {x: 0.04021164, y: null}, {x: 0.012509773, y: null}, {x: 0.05907173, y: null}, {x: 0.0, y: null}, {x: 0.03442029, y: null}, {x: 0.101449275, y: null}, {x: 0.0, y: null}, {x: 0.023376623, y: null}, {x: 0.095435685, y: null}, {x: 0.080675422, y: null}, {x: 0.084210526, y: null}, {x: 0.220689655, y: null}, {x: 0.348804501, y: null}, {x: 0.042168675, y: null}, {x: 0.0, y: null}, {x: 0.232876712, y: null}, {x: 0.053272451, y: null}, {x: 0.0, y: null}, {x: 0.093896714, y: null}, {x: 0.019296254, y: null}, {x: 0.0, y: null}, {x: 0.043010753, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095567867, y: null}, {x: 0.023391813, y: null}, {x: 0.0, y: null}, {x: 0.032906764, y: null}, {x: 0.0, y: null}, {x: 0.039130435, y: null}, {x: 0.076205288, y: null}, {x: 0.049327354, y: null}, {x: 0.0, y: null}, {x: 0.117647059, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054901961, y: null}, {x: 0.05615942, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017467249, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050458716, y: null}, {x: 0.0, y: null}, {x: 0.027444254, y: null}, {x: 0.0, y: null}, {x: 0.022160665, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071428571, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019011407, y: null}, {x: 0.025, y: null}, {x: 0.0, y: null}, {x: 0.166666667, y: null}, {x: 0.144970414, y: null}, {x: 0.045845272, y: null}, {x: 0.098924731, y: null}, {x: 0.108910891, y: null}, {x: 0.114035088, y: null}, {x: 0.051490515, y: null}, {x: 0.326424871, y: null}, {x: 0.294776119, y: null}, {x: 0.149925038, y: null}, {x: 0.081395349, y: null}, {x: 0.067741935, y: null}, {x: 0.112033195, y: null}, {x: 0.218018018, y: null}, {x: 0.067975831, y: null}, {x: 0.0, y: null}, {x: 0.03343949, y: null}, {x: 0.0, y: null}, {x: 0.475195823, y: null}, {x: 0.057086614, y: null}, {x: 0.152027027, y: null}, {x: 0.246753247, y: null}, {x: 0.17384106, y: null}, {x: 0.230476191, y: null}, {x: 0.251162791, y: null}, {x: 0.072635135, y: null}, {x: 0.0, y: null}, {x: 0.031553398, y: null}, {x: 0.341494845, y: null}, {x: 0.270457698, y: null}, {x: 0.0, y: null}, {x: 0.105633803, y: null}, {x: 0.206053551, y: null}, {x: 0.038461538, y: null}, {x: 0.120822622, y: null}, {x: 0.0, y: null}, {x: 0.243107769, y: null}, {x: 0.0, y: null}, {x: 0.12952381, y: null}, {x: 0.064088398, y: null}, {x: 0.07150368, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079777365, y: null}, {x: 0.0, y: null}, {x: 0.041728763, y: null}, {x: 0.172470978, y: null}, {x: 0.264750378, y: null}, {x: 0.048695652, y: null}, {x: 0.112474438, y: null}, {x: 0.069948187, y: null}, {x: 0.135638298, y: null}, {x: 0.160068847, y: null}, {x: 0.171641791, y: null}, {x: 0.138613861, y: null}, {x: 0.096563011, y: null}, {x: 0.099078341, y: null}, {x: 0.0, y: null}, {x: 0.054151625, y: null}, {x: 0.0, y: null}, {x: 0.132989025, y: null}, {x: 0.048959608, y: null}, {x: 0.036637931, y: null}, {x: 0.1625, y: null}, {x: 0.042139384, y: null}, {x: 0.178194607, y: null}, {x: 0.0, y: null}, {x: 0.053521127, y: null}, {x: 0.155993432, y: null}, {x: 0.031296572, y: null}, {x: 0.048433048, y: null}, {x: 0.088421053, y: null}, {x: 0.117424242, y: null}, {x: 0.023779725, y: null}, {x: 0.116257947, y: null}, {x: 0.115906289, y: null}, {x: 0.012, y: null}, {x: 0.0, y: null}, {x: 0.027355623, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057901086, y: null}, {x: 0.018575851, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.141906874, y: null}, {x: 0.110192838, y: null}, {x: 0.087096774, y: null}, {x: 0.034642032, y: null}, {x: 0.258064516, y: null}, {x: 0.0, y: null}, {x: 0.091234347, y: null}, {x: 0.0, y: null}, {x: 0.030487805, y: null}, {x: 0.04261796, y: null}, {x: 0.038076152, y: null}, {x: 0.035816619, y: null}, {x: 0.036247335, y: null}, {x: 0.044692737, y: null}, {x: 0.010498688, y: null}, {x: 0.0, y: null}, {x: 0.06284658, y: null}, {x: 0.011627907, y: null}, {x: 0.037414966, y: null}, {x: 0.146236559, y: null}, {x: 0.0, y: null}, {x: 0.154716981, y: null}, {x: 0.131113424, y: null}, {x: 0.053003534, y: null}, {x: 0.06505102, y: null}, {x: 0.114886731, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.096952909, y: null}, {x: 0.0, y: null}, {x: 0.075851393, y: null}, {x: 0.100358423, y: null}, {x: 0.0, y: null}, {x: 0.053892216, y: null}, {x: 0.161290323, y: null}, {x: 0.0, y: null}, {x: 0.07375, y: null}, {x: 0.153262519, y: null}, {x: 0.127979925, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022826087, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057915058, y: null}, {x: 0.278911565, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.118206522, y: null}, {x: 0.106382979, y: null}, {x: 0.0, y: null}, {x: 0.168449198, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.057361377, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044345898, y: null}, {x: 0.068807339, y: null}, {x: 0.104100946, y: null}, {x: 0.028894472, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040299906, y: null}, {x: 0.045296167, y: null}, {x: 0.088050314, y: null}, {x: 0.122807018, y: null}, {x: 0.021912351, y: null}, {x: 0.021235521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046920821, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.123036649, y: null}, {x: 0.0, y: null}, {x: 0.027480916, y: null}, {x: 0.054054054, y: null}, {x: 0.054794521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061403509, y: null}, {x: 0.07037037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.094117647, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01986755, y: null}, {x: 0.0, y: null}, {x: 0.026649746, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028416779, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076555024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.084415584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011574074, y: null}, {x: 0.03601108, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037558685, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037887486, y: null}, {x: 0.0, y: null}, {x: 0.049668874, y: null}, {x: 0.123870968, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026687598, y: null}, {x: 0.016977929, y: null}, {x: 0.175690608, y: null}, {x: 0.009400705, y: null}, {x: 0.253048781, y: null}, {x: 0.051136364, y: null}, {x: 0.095814978, y: null}, {x: 0.278873239, y: null}, {x: 0.045375218, y: null}, {x: 0.046768707, y: null}, {x: 0.032745592, y: null}, {x: 0.067375887, y: null}, {x: 0.035087719, y: null}, {x: 0.02994012, y: null}, {x: 0.010327022, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004123711, y: null}, {x: 0.132492114, y: null}, {x: 0.0, y: null}, {x: 0.09255079, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.09447983, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035483871, y: 3617.0713}, {x: 0.0, y: null}, {x: 0.013740458, y: null}, {x: 0.012113055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019047619, y: null}, {x: 0.0, y: null}, {x: 0.033898305, y: null}, {x: 0.0, y: null}, {x: 0.017897092, y: null}, {x: 0.0, y: null}, {x: 0.024506467, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05794948, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.116136919, y: null}, {x: 0.0, y: null}, {x: 0.03, y: 21.541675}, {x: 0.060377358, y: null}, {x: 0.0, y: null}, {x: 0.120287253, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066838046, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010650888, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009009009, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011308562, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.021042}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015625, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008849558, y: null}, {x: 0.013846154, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035874439, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.088291747, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085313175, y: null}, {x: 0.332382311, y: null}, {x: 0.288, y: null}, {x: 0.126984127, y: null}, {x: 0.193298969, y: null}, {x: 0.220338983, y: null}, {x: 0.24137931, y: null}, {x: 0.129554656, y: null}, {x: 0.04519774, y: null}, {x: 0.080174927, y: null}, {x: 0.130237826, y: null}, {x: 0.170426065, y: null}, {x: 0.007556675, y: null}, {x: 0.0, y: null}, {x: 0.300484653, y: null}, {x: 0.215256008, y: null}, {x: 0.238341969, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047945205, y: null}, {x: 0.266033254, y: null}, {x: 0.289398281, y: null}, {x: 0.0, y: null}, {x: 0.080944351, y: null}, {x: 0.177033493, y: null}, {x: 0.0, y: null}, {x: 0.429012346, y: null}, {x: 0.070840198, y: null}, {x: 0.0, y: null}, {x: 0.060100167, y: null}, {x: 0.422924901, y: null}, {x: 0.212475634, y: null}, {x: 0.117540687, y: null}, {x: 0.269293925, y: null}, {x: 0.048672566, y: null}, {x: 0.019067797, y: null}, {x: 0.0, y: null}, {x: 0.313656388, y: null}, {x: 0.0, y: null}, {x: 0.371323529, y: null}, {x: 0.055797733, y: null}, {x: 0.172248804, y: null}, {x: 0.06035503, y: null}, {x: 0.122340426, y: null}, {x: 0.0, y: null}, {x: 0.063444109, y: null}, {x: 0.106598985, y: null}, {x: 0.0, y: null}, {x: 0.135775862, y: null}, {x: 0.22614841, y: null}, {x: 0.228486647, y: null}, {x: 0.370283019, y: null}, {x: 0.145129225, y: null}, {x: 0.073170732, y: null}, {x: 0.091338583, y: null}, {x: 0.0, y: null}, {x: 0.095528455, y: null}, {x: 0.074148297, y: null}, {x: 0.266452649, y: null}, {x: 0.117647059, y: null}, {x: 0.0, y: null}, {x: 0.038732394, y: null}, {x: 0.0, y: null}, {x: 0.010570825, y: null}, {x: 0.061287028, y: null}, {x: 0.018544936, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050359712, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071593533, y: null}, {x: 0.012962963, y: null}, {x: 0.0, y: null}, {x: 0.010062893, y: null}, {x: 0.012302285, y: null}, {x: 0.03874092, y: null}, {x: 0.0, y: null}, {x: 0.011363636, y: null}, {x: 0.0, y: null}, {x: 0.047318612, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029593095, y: null}, {x: 0.0, y: null}, {x: 0.012121212, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112258065, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.120071685, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007430998, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009787928, y: null}, {x: 0.06185567, y: null}, {x: 0.048884166, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074725275, y: null}, {x: 0.239583333, y: null}, {x: 0.0, y: null}, {x: 0.039156627, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105747126, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112781955, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008536585, y: null}, {x: 0.017421603, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040322581, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020440252, y: null}, {x: 0.0, y: null}, {x: 0.005213764, y: null}, {x: 0.00952381, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010230179, y: null}, {x: 0.0, y: null}, {x: 0.043222004, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0609319, y: null}, {x: 0.0, y: null}, {x: 0.009195402, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032183908, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076759062, y: null}, {x: 0.0, y: null}, {x: 0.027807487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021398003, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024817518, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038709677, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103975535, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038906414, y: null}, {x: 0.049579046, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.157232704, y: null}, {x: 0.0, y: null}, {x: 0.062827225, y: null}, {x: 0.195652174, y: null}, {x: 0.184855234, y: null}, {x: 0.083129584, y: null}, {x: 0.216, y: null}, {x: 0.015981735, y: null}, {x: 0.0546875, y: null}, {x: 0.103535354, y: null}, {x: 0.153482881, y: null}, {x: 0.027237354, y: null}, {x: 0.0, y: null}, {x: 0.046728972, y: null}, {x: 0.155063291, y: null}, {x: 0.01369863, y: null}, {x: 0.084382872, y: null}, {x: 0.020430108, y: null}, {x: 0.041958042, y: null}, {x: 0.11308204, y: null}, {x: 0.588014981, y: null}, {x: 0.009708738, y: null}, {x: 0.0, y: null}, {x: 0.003676471, y: null}, {x: 0.038314176, y: null}, {x: 0.036842105, y: null}, {x: 0.119113573, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054830287, y: null}, {x: 0.0, y: null}, {x: 0.233128834, y: null}, {x: 0.047244094, y: null}, {x: 0.292753623, y: null}, {x: 0.050324675, y: null}, {x: 0.125, y: null}, {x: 0.039761431, y: null}, {x: 0.099644128, y: null}, {x: 0.087248322, y: null}, {x: 0.322807018, y: null}, {x: 0.11496063, y: null}, {x: 0.311764706, y: null}, {x: 0.183150183, y: null}, {x: 0.244117647, y: null}, {x: 0.0, y: null}, {x: 0.192755498, y: null}, {x: 0.082474227, y: null}, {x: 0.100737101, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.058956916, y: null}, {x: 0.348958333, y: null}, {x: 0.075441413, y: null}, {x: 0.0, y: null}, {x: 0.08477842, y: null}, {x: 0.227138643, y: null}, {x: 0.190789474, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.366438356, y: null}, {x: 0.0, y: null}, {x: 0.140350877, y: null}, {x: 0.0, y: null}, {x: 0.024017467, y: null}, {x: 0.215481172, y: null}, {x: 0.166666667, y: null}, {x: 0.046511628, y: null}, {x: 0.047619048, y: null}, {x: 0.155339806, y: null}, {x: 0.035063114, y: null}, {x: 0.106666667, y: null}, {x: 0.277056277, y: null}, {x: 0.066666667, y: null}, {x: 0.071225071, y: null}, {x: 0.215053763, y: null}, {x: 0.076923077, y: null}, {x: 0.218518519, y: null}, {x: 0.079925651, y: null}, {x: 0.095238095, y: null}, {x: 0.100719425, y: null}, {x: 0.136585366, y: null}, {x: 0.096491228, y: null}, {x: 0.082677165, y: null}, {x: 0.0, y: null}, {x: 0.180914513, y: null}, {x: 0.455882353, y: null}, {x: 0.054958184, y: null}, {x: 0.0, y: null}, {x: 0.524005487, y: null}, {x: 0.12585034, y: null}, {x: 0.044546851, y: null}, {x: 0.12605042, y: null}, {x: 0.200704225, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022058824, y: null}, {x: 0.021321962, y: null}, {x: 0.0, y: null}, {x: 0.04805915, y: null}, {x: 0.0, y: null}, {x: 0.039426523, y: null}, {x: 0.033033033, y: null}, {x: 0.012936611, y: null}, {x: 0.011730205, y: null}, {x: 0.026315789, y: null}, {x: 0.0, y: null}, {x: 0.052917232, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081946223, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075040783, y: null}, {x: 0.00929368, y: null}, {x: 0.014571949, y: null}, {x: 0.063157895, y: null}, {x: 0.164670659, y: null}, {x: 0.088704089, y: null}, {x: 0.053175775, y: null}, {x: 0.018691589, y: null}, {x: 0.096899225, y: null}, {x: 0.0, y: null}, {x: 0.016304348, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035060976, y: null}, {x: 0.313497823, y: null}, {x: 0.01625, y: null}, {x: 0.055727554, y: 7.2}, {x: 0.0, y: null}, {x: 0.069832402, y: null}, {x: 0.108433735, y: null}, {x: 0.0, y: null}, {x: 0.063670412, y: null}, {x: 0.0, y: null}, {x: 0.045731707, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085164835, y: null}, {x: 0.0, y: null}, {x: 0.087460485, y: null}, {x: 0.029255319, y: 766.04}, {x: 0.014018692, y: 273.784}, {x: 0.039759036, y: null}, {x: 0.215730337, y: null}, {x: 0.174846626, y: null}, {x: 0.012640449, y: 2.5375}, {x: 0.205521472, y: null}, {x: 0.272588055, y: 0.473}, {x: 0.145190563, y: null}, {x: 0.189300412, y: null}, {x: 0.224199288, y: null}, {x: 0.55450237, y: null}, {x: 0.463333333, y: null}, {x: 0.141868512, y: 3.82795}, {x: 0.176706827, y: null}, {x: 0.213136729, y: null}, {x: 0.035353535, y: null}, {x: 0.164821648, y: null}, {x: 0.216, y: null}, {x: 0.0, y: null}, {x: 0.418502203, y: null}, {x: 0.140718563, y: null}, {x: 0.43537415, y: null}, {x: 0.503802281, y: null}, {x: 0.573170732, y: null}, {x: 0.471204189, y: null}, {x: 0.189795918, y: null}, {x: 0.320474777, y: 0.17529}, {x: 0.229281768, y: null}, {x: 0.119469027, y: null}, {x: 0.040100251, y: null}, {x: 0.141369048, y: null}, {x: 0.2933213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.177142857, y: 16.942}, {x: 0.1369606, y: null}, {x: 0.067375887, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05108055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005714286, y: null}, {x: 0.0, y: null}, {x: 0.179425837, y: null}, {x: 0.56884058, y: null}, {x: 0.0, y: null}, {x: 0.060606061, y: null}, {x: 0.0, y: null}, {x: 0.06056338, y: null}, {x: 0.0, y: null}, {x: 0.037800687, y: null}, {x: 0.290657439, y: null}, {x: 0.192411924, y: null}, {x: 0.37615894, y: null}, {x: 0.02530253, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037795276, y: null}, {x: 0.566757493, y: null}, {x: 0.083860759, y: null}, {x: 0.0, y: null}, {x: 0.076595745, y: null}, {x: 0.050485437, y: null}, {x: 0.0, y: null}, {x: 0.196498055, y: null}, {x: 0.74744898, y: null}, {x: 0.116883117, y: null}, {x: 0.301576873, y: null}, {x: 0.675958188, y: null}, {x: 0.04, y: null}, {x: 0.0, y: null}, {x: 0.171021378, y: null}, {x: 0.100558659, y: null}, {x: 0.210382514, y: null}, {x: 0.019957983, y: 180.08110000000002}, {x: 0.49691358, y: null}, {x: 0.026455026, y: null}, {x: 0.118090452, y: null}, {x: 0.097520661, y: null}, {x: 0.540162122, y: null}, {x: 0.041176471, y: null}, {x: 0.0, y: null}, {x: 0.083823529, y: null}, {x: 0.012687428, y: null}, {x: 0.046511628, y: null}, {x: 0.113748764, y: null}, {x: 0.0, y: null}, {x: 0.466767372, y: null}, {x: 0.171962617, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029929577, y: null}, {x: 0.25, y: null}, {x: 0.04719764, y: null}, {x: 0.044481054, y: null}, {x: 0.161931818, y: null}, {x: 0.0, y: null}, {x: 0.29318542, y: null}, {x: 0.2325, y: null}, {x: 0.142394822, y: null}, {x: 0.131578947, y: null}, {x: 0.086743044, y: null}, {x: 0.011644833, y: null}, {x: 0.331220285, y: null}, {x: 0.059160305, y: null}, {x: 0.233502538, y: null}, {x: 0.255369928, y: null}, {x: 0.144144144, y: null}, {x: 0.104477612, y: null}, {x: 0.236607143, y: null}, {x: 0.131241084, y: null}, {x: 0.043969849, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.340384615, y: null}, {x: 0.386255924, y: null}, {x: 0.163865546, y: null}, {x: 0.206557377, y: null}, {x: 0.131386861, y: null}, {x: 0.126684636, y: null}, {x: 0.249391728, y: null}, {x: 0.175675676, y: null}, {x: 0.158950617, y: null}, {x: 0.229437229, y: null}, {x: 0.541666667, y: null}, {x: 0.378411911, y: null}, {x: 0.285217391, y: null}, {x: 0.323049002, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.140350877, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.094098884, y: null}, {x: 0.116352201, y: null}, {x: 0.289244186, y: null}, {x: 0.0, y: null}, {x: 0.14159292, y: null}, {x: 0.0, y: null}, {x: 0.286956522, y: null}, {x: 0.240150094, y: null}, {x: 0.115671642, y: null}, {x: 0.0, y: null}, {x: 0.18, y: null}, {x: 0.162337662, y: null}, {x: 0.159041394, y: null}, {x: 0.053380783, y: null}, {x: 0.138211382, y: null}, {x: 0.413612565, y: null}, {x: 0.438155136, y: null}, {x: 0.165277778, y: null}, {x: 0.170658683, y: null}, {x: 0.195171026, y: null}, {x: 0.257053292, y: null}, {x: 0.215328467, y: null}, {x: 0.157503715, y: null}, {x: 0.133640553, y: null}, {x: 0.271889401, y: null}, {x: 0.316666667, y: null}, {x: 0.14159292, y: null}, {x: 0.456395349, y: null}, {x: 0.381374723, y: null}, {x: 0.070121951, y: null}, {x: 0.0, y: null}, {x: 0.25389755, y: null}, {x: 0.0, y: null}, {x: 0.193548387, y: null}, {x: 0.236151604, y: null}, {x: 0.355179704, y: null}, {x: 0.0, y: null}, {x: 0.230633803, y: null}, {x: 0.180124224, y: null}, {x: 0.206812652, y: null}, {x: 0.298600311, y: null}, {x: 0.144117647, y: null}, {x: 0.395759717, y: null}, {x: 0.119617225, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.101426307, y: null}, {x: 0.092105263, y: null}, {x: 0.111553785, y: null}, {x: 0.073076923, y: null}, {x: 0.282208589, y: null}, {x: 0.216981132, y: null}, {x: 0.06779661, y: null}, {x: 0.0, y: null}, {x: 0.206278027, y: null}, {x: 0.092140921, y: null}, {x: 0.161564626, y: null}, {x: 0.123827392, y: null}, {x: 0.145631068, y: null}, {x: 0.223988439, y: null}, {x: 0.162561576, y: null}, {x: 0.199329983, y: null}, {x: 0.179104478, y: null}, {x: 0.387387387, y: null}, {x: 0.089668616, y: null}, {x: 0.183391004, y: null}, {x: 0.124401914, y: null}, {x: 0.062937063, y: null}, {x: 0.283950617, y: null}, {x: 0.172680412, y: null}, {x: 0.125, y: null}, {x: 0.108870968, y: null}, {x: 0.11732852, y: null}, {x: 0.180722892, y: null}, {x: 0.214285714, y: null}, {x: 0.091036415, y: null}, {x: 0.0, y: null}, {x: 0.096463023, y: null}, {x: 0.408571429, y: null}, {x: 0.313782991, y: null}, {x: 0.0, y: null}, {x: 0.248366013, y: null}, {x: 0.084269663, y: null}, {x: 0.09556314, y: null}, {x: 0.035019455, y: null}, {x: 0.089506173, y: null}, {x: 0.198275862, y: null}, {x: 0.070987654, y: null}, {x: 0.171717172, y: null}, {x: 0.086206897, y: null}, {x: 0.418604651, y: null}, {x: 0.15625, y: null}, {x: 0.0, y: null}, {x: 0.116045845, y: null}, {x: 0.237639553, y: null}, {x: 0.20295203, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.181578947, y: null}, {x: 0.079584775, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.125412541, y: null}, {x: 0.187203792, y: null}, {x: 0.0, y: null}, {x: 0.071269488, y: null}, {x: 0.051330798, y: null}, {x: 0.0, y: null}, {x: 0.05915493, y: null}, {x: 0.09939759, y: null}, {x: 0.003169572, y: null}, {x: 0.100263852, y: null}, {x: 0.037523452, y: null}, {x: 0.0486618, y: null}, {x: 0.096732026, y: null}, {x: 0.0, y: null}, {x: 0.418972332, y: null}, {x: 0.210526316, y: null}, {x: 0.233905579, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.106765328, y: null}, {x: 0.024, y: null}, {x: 0.02293578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.097560976, y: null}, {x: 0.0, y: null}, {x: 0.101321586, y: null}, {x: 0.099667774, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.053050398, y: null}, {x: 0.191082803, y: null}, {x: 0.039735099, y: null}, {x: 0.090128755, y: null}, {x: 0.02278481, y: null}, {x: 0.074542897, y: null}, {x: 0.06097561, y: null}, {x: 0.173285199, y: null}, {x: 0.262806236, y: null}, {x: 0.10755814, y: null}, {x: 0.085526316, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065217391, y: null}, {x: 0.007856341, y: null}, {x: 0.034210526, y: null}, {x: 0.02862254, y: null}, {x: 0.104972376, y: null}, {x: 0.284810127, y: null}, {x: 0.111328125, y: null}, {x: 0.0, y: null}, {x: 0.103896104, y: null}, {x: 0.117647059, y: null}, {x: 0.258293839, y: null}, {x: 0.0, y: null}, {x: 0.082089552, y: null}, {x: 0.0, y: null}, {x: 0.133832976, y: null}, {x: 0.099502488, y: null}, {x: 0.078125, y: null}, {x: 0.208613728, y: null}, {x: 0.034139403, y: null}, {x: 0.209302326, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033259424, y: null}, {x: 0.114143921, y: null}, {x: 0.040229885, y: null}, {x: 0.037914692, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071017274, y: null}, {x: 0.247863248, y: null}, {x: 0.007494647, y: null}, {x: 0.045553145, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036474164, y: null}, {x: 0.0, y: null}, {x: 0.016415869, y: null}, {x: 0.051440329, y: null}, {x: 0.040584416, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112612613, y: null}, {x: 0.112938597, y: null}, {x: 0.037344398, y: null}, {x: 0.076923077, y: null}, {x: 0.089430894, y: null}, {x: 0.179442509, y: null}, {x: 0.04845815, y: null}, {x: 0.0, y: null}, {x: 0.041284404, y: null}, {x: 0.0, y: null}, {x: 0.045034642, y: null}, {x: 0.099354839, y: null}, {x: 0.11550152, y: null}, {x: 0.470588235, y: null}, {x: 0.227848101, y: null}, {x: 0.023148148, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044155844, y: null}, {x: 0.012797075, y: null}, {x: 0.04199773, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.164516129, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.09939759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054347826, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.077669903, y: null}, {x: 0.0, y: null}, {x: 0.044354839, y: null}, {x: 0.112200436, y: null}, {x: 0.078373016, y: null}, {x: 0.043715847, y: null}, {x: 0.298208641, y: null}, {x: 0.201336675, y: null}, {x: 0.161764706, y: null}, {x: 0.105263158, y: null}, {x: 0.092764378, y: null}, {x: 0.096256684, y: null}, {x: 0.034632035, y: null}, {x: 0.078104994, y: null}, {x: 0.109057301, y: null}, {x: 0.132867133, y: null}, {x: 0.367412141, y: null}, {x: 0.268792711, y: null}, {x: 0.081632653, y: null}, {x: 0.259414226, y: null}, {x: 0.0, y: null}, {x: 0.089506173, y: null}, {x: 0.056862745, y: null}, {x: 0.203333333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.183673469, y: null}, {x: 0.219512195, y: null}, {x: 0.133333333, y: null}, {x: 0.0, y: null}, {x: 0.181657848, y: null}, {x: 0.49602122, y: null}, {x: 0.128342246, y: null}, {x: 0.0, y: null}, {x: 0.232835821, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.301675978, y: null}, {x: 0.097130243, y: null}, {x: 0.453453454, y: null}, {x: 0.250909091, y: null}, {x: 0.160997732, y: null}, {x: 0.0, y: null}, {x: 0.412742382, y: null}, {x: 0.75088968, y: null}, {x: 0.18852459, y: null}, {x: 0.202898551, y: null}, {x: 0.566395664, y: null}, {x: 0.637873754, y: null}, {x: 0.433198381, y: null}, {x: 0.144200627, y: null}, {x: 0.078616352, y: null}, {x: 0.183229814, y: 0.028}, {x: 0.372307692, y: null}, {x: 0.519685039, y: null}, {x: 0.060362173, y: null}, {x: 0.22737819, y: null}, {x: 0.090019569, y: null}, {x: 0.159574468, y: null}, {x: 0.128125, y: null}, {x: 0.593291405, y: null}, {x: 0.0, y: null}, {x: 0.383900929, y: null}, {x: 0.0, y: 1.660842}, {x: 0.133333333, y: null}, {x: 0.29390681, y: null}, {x: 0.133479212, y: null}, {x: 0.0, y: null}, {x: 0.232857143, y: null}, {x: 0.214776632, y: null}, {x: 0.283333333, y: null}, {x: 0.264344262, y: null}, {x: 0.0, y: null}, {x: 0.216763006, y: null}, {x: 0.589403974, y: null}, {x: 0.093333333, y: null}, {x: 0.208609272, y: null}, {x: 0.114379085, y: null}, {x: 0.072131148, y: null}, {x: 0.199084668, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.215217391, y: null}, {x: 0.007587253, y: null}, {x: 0.114398422, y: null}, {x: 0.231454006, y: null}, {x: 0.094117647, y: null}, {x: 0.0, y: null}, {x: 0.058084772, y: null}, {x: 0.023648649, y: null}, {x: 0.0, y: null}, {x: 0.082429501, y: null}, {x: 0.26443769, y: null}, {x: 0.182795699, y: null}, {x: 0.046391753, y: null}, {x: 0.147001934, y: null}, {x: 0.394495413, y: null}, {x: 0.307086614, y: null}, {x: 0.161228407, y: null}, {x: 0.129844961, y: null}, {x: 0.145721925, y: null}, {x: 0.0, y: null}, {x: 0.053701016, y: null}, {x: 0.220838052, y: null}, {x: 0.028795812, y: null}, {x: 0.252155172, y: null}, {x: 0.075975359, y: null}, {x: 0.109589041, y: null}, {x: 0.178640777, y: null}, {x: 0.04691358, y: null}, {x: 0.194503171, y: null}, {x: 0.224598931, y: null}, {x: 0.229090909, y: null}, {x: 0.190082645, y: null}, {x: 0.351239669, y: null}, {x: 0.378026071, y: null}, {x: 0.271948608, y: null}, {x: 0.175088132, y: null}, {x: 0.175308642, y: null}, {x: 0.112462006, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.106888361, y: null}, {x: 0.051460362, y: null}, {x: 0.0, y: null}, {x: 0.027972028, y: null}, {x: 0.0, y: null}, {x: 0.013452915, y: null}, {x: 0.0, y: null}, {x: 0.029239766, y: null}, {x: 0.034220532, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036977492, y: null}, {x: 0.0, y: null}, {x: 0.03006012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.444444444, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028391167, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014173228, y: null}, {x: 0.020361991, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011375388, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.067641682, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007476636, y: null}, {x: 0.0, y: null}, {x: 0.045897079, y: null}, {x: 0.008547009, y: null}, {x: 0.0, y: null}, {x: 0.049751244, y: null}, {x: 0.019163763, y: null}, {x: 0.027027027, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028795812, y: null}, {x: 0.019347037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04109589, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029865125, y: null}, {x: 0.039246468, y: null}, {x: 0.0, y: null}, {x: 0.077017115, y: null}, {x: 0.481404959, y: null}, {x: 0.112956811, y: null}, {x: 0.068432671, y: null}, {x: 0.0, y: null}, {x: 0.189269747, y: null}, {x: 0.0, y: null}, {x: 0.591478697, y: null}, {x: 0.038554217, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025666338, y: null}, {x: 0.124567474, y: 626.415468}, {x: 0.112970711, y: null}, {x: 0.120171674, y: null}, {x: 0.145454546, y: null}, {x: 0.084291188, y: null}, {x: 0.064, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010869565, y: null}, {x: 0.026548673, y: null}, {x: 0.086065574, y: null}, {x: 0.0, y: 0.316}, {x: 0.0, y: 13.296268}, {x: 0.0, y: null}, {x: 0.028199566, y: null}, {x: 0.055374593, y: null}, {x: 0.458823529, y: null}, {x: 0.030237581, y: 0.22}, {x: 0.0, y: null}, {x: 0.094435076, y: null}, {x: 0.014040562, y: 0.171}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071258907, y: null}, {x: 0.02134647, y: null}, {x: 0.0, y: null}, {x: 0.194202899, y: null}, {x: 0.0, y: null}, {x: 0.051649928, y: null}, {x: 0.122362869, y: null}, {x: 0.02295082, y: null}, {x: 0.23, y: null}, {x: 0.16, y: 9.505065}, {x: 0.078651685, y: null}, {x: 0.050916497, y: null}, {x: 0.035164835, y: 3.291023}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105839416, y: null}, {x: 0.03030303, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024413146, y: null}, {x: 0.018595041, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013513514, y: null}, {x: 0.015209125, y: null}, {x: 0.123809524, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089570552, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019762846, y: null}, {x: 0.0, y: null}, {x: 0.112195122, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024781341, y: null}, {x: 0.0375, y: null}, {x: 0.092857143, y: null}, {x: 0.01578354, y: null}, {x: 0.095918367, y: null}, {x: 0.007627765, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030701754, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.016676}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.003921569, y: null}, {x: 0.0, y: null}, {x: 0.008498584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008403361, y: null}, {x: 0.006802721, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028135991, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105173876, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.177777778, y: null}, {x: 0.359307359, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.048231511, y: null}, {x: 0.088807786, y: null}, {x: 0.041450777, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.143835616, y: null}, {x: 0.092457421, y: null}, {x: 0.122235157, y: null}, {x: 0.038918919, y: null}, {x: 0.02425876, y: null}, {x: 0.12244898, y: null}, {x: 0.0, y: null}, {x: 0.253937008, y: null}, {x: 0.029689609, y: null}, {x: 0.059958649, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030712531, y: null}, {x: 0.017021277, y: null}, {x: 0.137542277, y: null}, {x: 0.027863777, y: null}, {x: 0.118811881, y: null}, {x: 0.06932409, y: null}, {x: 0.0, y: null}, {x: 0.150093809, y: null}, {x: 0.075682382, y: null}, {x: 0.0, y: null}, {x: 0.096491228, y: null}, {x: 0.0, y: null}, {x: 0.099018733, y: null}, {x: 0.038116592, y: null}, {x: 0.025020178, y: null}, {x: 0.128400435, y: null}, {x: 0.0, y: null}, {x: 0.53271028, y: null}, {x: 0.0, y: null}, {x: 0.028052805, y: null}, {x: 0.097883598, y: null}, {x: 0.0, y: null}, {x: 0.125899281, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.174220963, y: null}, {x: 0.095238095, y: null}, {x: 0.256670902, y: null}, {x: 0.0, y: null}, {x: 0.105263158, y: null}, {x: 0.101351351, y: null}, {x: 0.141706924, y: null}, {x: 0.323770492, y: null}, {x: 0.346551724, y: null}, {x: 0.194928685, y: null}, {x: 0.445229682, y: null}, {x: 0.081318681, y: null}, {x: 0.046808511, y: null}, {x: 0.118556701, y: null}, {x: 0.185863874, y: null}, {x: 0.196213425, y: null}, {x: 0.02027027, y: null}, {x: 0.258953168, y: null}, {x: 0.169786096, y: null}, {x: 0.126153846, y: null}, {x: 0.070362473, y: null}, {x: 0.315088757, y: null}, {x: 0.0, y: null}, {x: 0.252525253, y: null}, {x: 0.0, y: null}, {x: 0.230263158, y: null}, {x: 0.222531294, y: null}, {x: 0.199170125, y: null}, {x: 0.104761905, y: null}, {x: 0.0, y: null}, {x: 0.316042267, y: null}, {x: 0.327102804, y: null}, {x: 0.411851852, y: null}, {x: 0.172413793, y: null}, {x: 0.48, y: null}, {x: 0.126373626, y: null}, {x: 0.147347741, y: null}, {x: 0.103448276, y: null}, {x: 0.176470588, y: null}, {x: 0.386861314, y: null}, {x: 0.14354067, y: null}, {x: 0.174231332, y: null}, {x: 0.101405623, y: null}, {x: 0.0, y: null}, {x: 0.15719697, y: null}, {x: 0.111757858, y: null}, {x: 0.152119701, y: null}, {x: 0.098928277, y: null}, {x: 0.311708861, y: null}, {x: 0.336426914, y: null}, {x: 0.0, y: null}, {x: 0.169291339, y: null}, {x: 0.041369472, y: null}, {x: 0.120200334, y: null}, {x: 0.21, y: null}, {x: 0.116071429, y: null}, {x: 0.127298444, y: null}, {x: 0.556962025, y: null}, {x: 0.251833741, y: null}, {x: 0.423387097, y: null}, {x: 0.1125, y: null}, {x: 0.106280193, y: 563.320881}, {x: 0.148314607, y: null}, {x: 0.405336722, y: null}, {x: 0.140877598, y: null}, {x: 0.0, y: null}, {x: 0.03125, y: null}, {x: 0.531598513, y: null}, {x: 0.114285714, y: null}, {x: 0.023904382, y: null}, {x: 0.107798165, y: null}, {x: 0.022058824, y: null}, {x: 0.021541011, y: null}, {x: 0.087391594, y: null}, {x: 0.065530799, y: null}, {x: 0.094619666, y: null}, {x: 0.113445378, y: null}, {x: 0.0, y: null}, {x: 0.081245768, y: null}, {x: 0.181818182, y: null}, {x: 0.057591623, y: null}, {x: 0.259656652, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085616438, y: null}, {x: 0.117537313, y: null}, {x: 0.063909774, y: null}, {x: 0.0, y: null}, {x: 0.083094556, y: null}, {x: 0.079925651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021398003, y: null}, {x: 0.058823529, y: null}, {x: 0.001589825, y: null}, {x: 0.015021459, y: null}, {x: 0.072829132, y: null}, {x: 0.008278146, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02173913, y: null}, {x: 0.018796992, y: null}, {x: 0.0, y: null}, {x: 0.057208238, y: null}, {x: 0.153658537, y: null}, {x: 0.0, y: null}, {x: 0.067982456, y: 58.2}, {x: 0.011173184, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076923077, y: null}, {x: 0.013651877, y: null}, {x: 0.027472527, y: null}, {x: 0.050505051, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065408805, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018099548, y: null}, {x: 0.0, y: null}, {x: 0.129645635, y: null}, {x: 0.049865229, y: null}, {x: 0.24784217, y: null}, {x: 0.023923445, y: null}, {x: 0.137931035, y: null}, {x: 0.0, y: null}, {x: 0.020190024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050632911, y: null}, {x: 0.021390374, y: null}, {x: 0.0, y: null}, {x: 0.066458982, y: null}, {x: 0.0, y: null}, {x: 0.008976661, y: null}, {x: 0.0, y: null}, {x: 0.043737575, y: null}, {x: 0.019736842, y: null}, {x: 0.0, y: null}, {x: 0.019157088, y: null}, {x: 0.074367089, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019031142, y: null}, {x: 0.0, y: null}, {x: 0.032258065, y: null}, {x: 0.025510204, y: null}, {x: 0.0, y: null}, {x: 0.024647887, y: null}, {x: 0.095389507, y: null}, {x: 0.030075188, y: null}, {x: 0.016666667, y: null}, {x: 0.031553398, y: null}, {x: 0.094545455, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023255814, y: null}, {x: 0.119815668, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01615074, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01372549, y: null}, {x: 0.108287293, y: null}, {x: 0.0, y: null}, {x: 0.078461538, y: null}, {x: 0.0, y: null}, {x: 0.014005602, y: null}, {x: 0.17826087, y: null}, {x: 0.13961039, y: null}, {x: 0.25058548, y: null}, {x: 0.04375, y: null}, {x: 0.054992764, y: null}, {x: 0.243421053, y: null}, {x: 0.307692308, y: null}, {x: 0.271293375, y: null}, {x: 0.046025105, y: null}, {x: 0.020689655, y: null}, {x: 0.092173913, y: null}, {x: 0.229166667, y: null}, {x: 0.0, y: null}, {x: 0.021238938, y: null}, {x: 0.011477762, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035490605, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026627219, y: null}, {x: 0.0, y: null}, {x: 0.034271726, y: null}, {x: 0.014223195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01124498, y: null}, {x: 0.0, y: null}, {x: 0.018181818, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033628319, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02003643, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040723982, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030241935, y: null}, {x: 0.110444178, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028145695, y: null}, {x: 0.0, y: null}, {x: 0.01590106, y: null}, {x: 0.079399142, y: null}, {x: 0.056451613, y: null}, {x: 0.065075922, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005031447, y: null}, {x: 0.027315914, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043604651, y: null}, {x: 0.044705882, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012578616, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074786325, y: null}, {x: 0.034205231, y: null}, {x: 0.048214286, y: null}, {x: 0.0, y: null}, {x: 0.218430034, y: null}, {x: 0.22519084, y: null}, {x: 0.066137566, y: null}, {x: 0.1, y: null}, {x: 0.233022637, y: null}, {x: 0.023648649, y: null}, {x: 0.111111111, y: null}, {x: 0.093587522, y: null}, {x: 0.058238636, y: null}, {x: 0.041860465, y: null}, {x: 0.022271715, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022813688, y: null}, {x: 0.0, y: null}, {x: 0.054140127, y: null}, {x: 0.014858841, y: null}, {x: 0.005988024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039242219, y: null}, {x: 0.150669643, y: null}, {x: 0.082822086, y: null}, {x: 0.04851752, y: null}, {x: 0.0, y: null}, {x: 0.024856597, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.00759173475, y: 53.641597853963276}, {x: 0.04882884825, y: 265.0945389959903}, {x: 0.5412371135, y: 120.00558217145276}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.00759173475, y: -20.45408911471381}, {x: 0.04882884825, y: 75.89659574576098}, {x: 0.5412371135, y: 74.07062372917304}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.00759173475, y: 127.73728482264036}, {x: 0.04882884825, y: 454.29248224621966}, {x: 0.5412371135, y: 165.94054061373248}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079847909, y: null}, {x: 0.118055556, y: null}, {x: 0.0, y: null}, {x: 0.017647059, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103585657, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081967213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.093729}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031034483, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015151515, y: null}, {x: 0.0, y: null}, {x: 0.012211669, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030075188, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014534884, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061068702, y: null}, {x: 0.054151625, y: null}, {x: 0.0, y: null}, {x: 0.058091286, y: null}, {x: 0.0, y: null}, {x: 0.02507837, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023210832, y: null}, {x: 0.04610951, y: null}, {x: 0.033530572, y: null}, {x: 0.075471698, y: null}, {x: 0.0, y: null}, {x: 0.067114094, y: null}, {x: 0.060185185, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025706941, y: null}, {x: 0.19544592, y: null}, {x: 0.0, y: null}, {x: 0.046692607, y: null}, {x: 0.029761905, y: null}, {x: 0.0, y: null}, {x: 0.313311688, y: null}, {x: 0.054973822, y: null}, {x: 0.07, y: null}, {x: 0.056057866, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051319648, y: null}, {x: 0.036885246, y: null}, {x: 0.098613251, y: null}, {x: 0.012465374, y: null}, {x: 0.040106952, y: null}, {x: 0.0, y: null}, {x: 0.011363636, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.084684685, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047516199, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042723632, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029673591, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066083576, y: null}, {x: 0.015662651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055913978, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014634146, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034175334, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024930748, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009638554, y: null}, {x: 0.006882312, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.215231788, y: null}, {x: 0.119047619, y: null}, {x: 0.195348837, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.03219697, y: null}, {x: 0.016330451, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040425532, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036613272, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04035309, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.064615385, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043902439, y: null}, {x: 0.0, y: null}, {x: 0.050531915, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.087962963, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007670182, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051369863, y: null}, {x: 0.0, y: null}, {x: 0.060301508, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.175}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015957447, y: null}, {x: 0.038076152, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040506329, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015781923, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.006329114, y: null}, {x: 0.0, y: null}, {x: 0.029821074, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029739777, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.003372681, y: null}, {x: 0.010498688, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004830918, y: null}, {x: 0.021680217, y: null}, {x: 0.007894737, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.006289308, y: null}, {x: 0.042056075, y: null}, {x: 0.0, y: null}, {x: 0.022727273, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034662045, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020761246, y: null}, {x: 0.0, y: null}, {x: 0.018549747, y: null}, {x: 0.01270648, y: null}, {x: 0.067919075, y: null}, {x: 0.0, y: null}, {x: 0.020942408, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019512195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095011876, y: null}, {x: 0.061583578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015974441, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036170213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019345238, y: null}, {x: 0.00908059, y: null}, {x: 0.019047619, y: null}, {x: 0.092257002, y: null}, {x: 0.0, y: null}, {x: 0.199434229, y: null}, {x: 0.108108108, y: null}, {x: 0.141695703, y: null}, {x: 0.139573071, y: null}, {x: 0.0, y: null}, {x: 0.044067797, y: null}, {x: 0.117370892, y: null}, {x: 0.049360146, y: null}, {x: 0.102756892, y: null}, {x: 0.04952381, y: null}, {x: 0.170160296, y: 33.039}, {x: 0.009884679, y: null}, {x: 0.131929047, y: null}, {x: 0.074349442, y: null}, {x: 0.139215686, y: null}, {x: 0.048648649, y: null}, {x: 0.040540541, y: null}, {x: 0.043737575, y: null}, {x: 0.0625, y: null}, {x: 0.018556701, y: null}, {x: 0.020491803, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019900498, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045540797, y: null}, {x: 0.0, y: null}, {x: 0.014111007, y: null}, {x: 0.0, y: null}, {x: 0.01396648, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015437393, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.032723773, y: null}, {x: 0.042124542, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03087886, y: null}, {x: 0.0, y: null}, {x: 0.01994302, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095070423, y: null}, {x: 0.027210884, y: null}, {x: 0.108108108, y: null}, {x: 0.081705151, y: null}, {x: 0.0, y: null}, {x: 0.017305315, y: null}, {x: 0.022556391, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050785973, y: null}, {x: 0.066957787, y: null}, {x: 0.136279926, y: null}, {x: 0.010233918, y: null}, {x: 0.013057671, y: null}, {x: 0.0, y: null}, {x: 0.12244898, y: null}, {x: 0.030716724, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059418458, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 999.999999}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038054968, y: null}, {x: 0.027415144, y: null}, {x: 0.013800425, y: null}, {x: 0.082289803, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040816327, y: null}, {x: 0.015576324, y: null}, {x: 0.0, y: null}, {x: 0.128947368, y: null}, {x: 0.188679245, y: null}, {x: 0.28708134, y: null}, {x: 0.030237581, y: null}, {x: 0.120567376, y: null}, {x: 0.152027027, y: null}, {x: 0.083435583, y: null}, {x: 0.347107438, y: null}, {x: 0.192622951, y: null}, {x: 0.147386461, y: null}, {x: 0.128099174, y: 95.803564}, {x: 0.01863354, y: null}, {x: 0.058894231, y: 1904.333217}, {x: 0.231638418, y: null}, {x: 0.212250712, y: null}, {x: 0.097196262, y: 33.812967}, {x: 0.105263158, y: null}, {x: 0.104316547, y: null}, {x: 0.03988604, y: null}, {x: 0.186246418, y: 13.403297}, {x: 0.196940727, y: null}, {x: 0.159192825, y: null}, {x: 0.045553145, y: null}, {x: 0.241473397, y: null}, {x: 0.040540541, y: null}, {x: 0.083333333, y: null}, {x: 0.0, y: null}, {x: 0.097457627, y: null}, {x: 0.204678363, y: null}, {x: 0.135802469, y: null}, {x: 0.027726433, y: null}, {x: 0.0, y: null}, {x: 0.065764023, y: null}, {x: 0.227876106, y: null}, {x: 0.221719457, y: null}, {x: 0.096428571, y: null}, {x: 0.013071895, y: 29.512963}, {x: 0.309692671, y: null}, {x: 0.22979798, y: null}, {x: 0.088607595, y: null}, {x: 0.040229885, y: null}, {x: 0.11976631, y: null}, {x: 0.186813187, y: null}, {x: 0.403669725, y: null}, {x: 0.100719425, y: null}, {x: 0.213793103, y: null}, {x: 0.253144654, y: null}, {x: 0.157389635, y: null}, {x: 0.37755102, y: null}, {x: 0.1, y: null}, {x: 0.210648148, y: null}, {x: 0.22923588, y: null}, {x: 0.0, y: null}, {x: 0.012531328, y: null}, {x: 0.0848, y: null}, {x: 0.089552239, y: null}, {x: 0.085850556, y: null}, {x: 0.103529412, y: null}, {x: 0.102824859, y: null}, {x: 0.0, y: null}, {x: 0.092913386, y: null}, {x: 0.043103448, y: null}, {x: 0.053921569, y: null}, {x: 0.053191489, y: null}, {x: 0.154929578, y: 292.744127}, {x: 0.122651934, y: 194.570504}, {x: 0.05786802, y: 443.440785}, {x: 0.046641791, y: null}, {x: 0.0, y: null}, {x: 0.054373522, y: null}, {x: 0.112798265, y: null}, {x: 0.064606742, y: null}, {x: 0.016627078, y: null}, {x: 0.016091954, y: null}, {x: 0.14739229, y: null}, {x: 0.0, y: null}, {x: 0.004728132, y: null}, {x: 0.103117506, y: null}, {x: 0.067969414, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012300123, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.102362205, y: null}, {x: 0.0, y: null}, {x: 0.02907916, y: null}, {x: 0.0, y: null}, {x: 0.061173533, y: null}, {x: 0.03131524, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039827772, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.139664805, y: null}, {x: 0.076487252, y: null}, {x: 0.024679171, y: null}, {x: 0.017191977, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043814433, y: null}, {x: 0.164242943, y: null}, {x: 0.032490975, y: null}, {x: 0.042414356, y: null}, {x: 0.102244389, y: null}, {x: 0.0, y: null}, {x: 0.017751479, y: null}, {x: 0.145320197, y: null}, {x: 0.061425061, y: null}, {x: 0.050632911, y: null}, {x: 0.0, y: 0.12512}, {x: 0.058394161, y: null}, {x: 0.249283668, y: null}, {x: 0.007936508, y: 5.77926}, {x: 0.030651341, y: null}, {x: 0.048387097, y: null}, {x: 0.100649351, y: null}, {x: 0.161616162, y: null}, {x: 0.114854518, y: null}, {x: 0.144787645, y: null}, {x: 0.177156177, y: null}, {x: 0.368421053, y: null}, {x: 0.0, y: null}, {x: 0.131715771, y: 734.949067}, {x: 0.371937639, y: null}, {x: 0.145631068, y: null}, {x: 0.212707182, y: null}, {x: 0.337209302, y: null}, {x: 0.288416076, y: null}, {x: 0.311111111, y: null}, {x: 0.148, y: null}, {x: 0.080882353, y: null}, {x: 0.058823529, y: null}, {x: 0.026159334, y: null}, {x: 0.0, y: null}, {x: 0.120665742, y: null}, {x: 0.294117647, y: null}, {x: 0.074404762, y: null}, {x: 0.0, y: null}, {x: 0.090707965, y: null}, {x: 0.455555556, y: 11.58294}, {x: 0.226821192, y: null}, {x: 0.123595506, y: 71.329358}, {x: 0.008196721, y: null}, {x: 0.267898383, y: null}, {x: 0.044334975, y: null}, {x: 0.08, y: null}, {x: 0.060240964, y: null}, {x: 0.014423077, y: null}, {x: 0.133333333, y: null}, {x: 0.009208103, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027027027, y: null}, {x: 0.026258206, y: null}, {x: 0.109028961, y: null}, {x: 0.019642857, y: null}, {x: 0.192810458, y: null}, {x: 0.05974026, y: null}, {x: 0.170068027, y: 148.959479}, {x: 0.306779661, y: null}, {x: 0.035460993, y: null}, {x: 0.204481793, y: null}, {x: 0.052730697, y: null}, {x: 0.018329939, y: null}, {x: 0.198275862, y: null}, {x: 0.158, y: null}, {x: 0.013806706, y: null}, {x: 0.068131868, y: null}, {x: 0.046218487, y: null}, {x: 0.430084746, y: null}, {x: 0.128888889, y: null}, {x: 0.088737201, y: null}, {x: 0.271367521, y: null}, {x: 0.236768802, y: 291.200847}, {x: 0.063366337, y: null}, {x: 0.159857904, y: null}, {x: 0.155778895, y: null}, {x: 0.226832642, y: 123.559491}, {x: 0.078740157, y: null}, {x: 0.387533875, y: 253.998766}, {x: 0.084858569, y: 25.889026}, {x: 0.18556701, y: null}, {x: 0.067961165, y: 32.36738}, {x: 0.025695931, y: 54.925090000000004}, {x: 0.257668712, y: null}, {x: 0.09221902, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.062740077, y: null}, {x: 0.101960784, y: null}, {x: 0.019067797, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02970297, y: null}, {x: 0.058823529, y: null}, {x: 0.103686636, y: null}, {x: 0.009535161, y: null}, {x: 0.0, y: null}, {x: 0.099455041, y: null}, {x: 0.038369305, y: null}, {x: 0.0, y: null}, {x: 0.043956044, y: null}, {x: 0.021615472, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039624609, y: null}, {x: 0.0, y: 40.416186}, {x: 0.009328358, y: null}, {x: 0.0, y: null}, {x: 0.036144578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019851117, y: null}, {x: 0.174418605, y: null}, {x: 0.010309278, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013157895, y: null}, {x: 0.0, y: null}, {x: 0.002805049, y: null}, {x: 0.0, y: null}, {x: 0.02259887, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.144021739, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.159793814, y: null}, {x: 0.073412698, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.119533528, y: null}, {x: 0.037783375, y: null}, {x: 0.0, y: null}, {x: 0.033045977, y: null}, {x: 0.0, y: null}, {x: 0.026923077, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 1.80788}, {x: 0.031823745, y: null}, {x: 0.014285714, y: null}, {x: 0.0, y: null}, {x: 0.01650165, y: null}, {x: 0.0, y: null}, {x: 0.113402062, y: null}, {x: 0.080178174, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.175496689, y: null}, {x: 0.287895311, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059952038, y: 1.335464}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03180212, y: null}, {x: 0.092178771, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034090909, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009210526, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033834586, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.072}, {x: 0.013307985, y: null}, {x: 0.0, y: null}, {x: 0.014925373, y: null}, {x: 0.053221289, y: null}, {x: 0.0, y: null}, {x: 0.036474164, y: null}, {x: 0.046943231, y: null}, {x: 0.02907489, y: null}, {x: 0.0, y: null}, {x: 0.153465347, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.271186441, y: null}, {x: 0.395348837, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.298219585, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011056511, y: null}, {x: 0.043568465, y: null}, {x: 0.073083779, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044736842, y: null}, {x: 0.110070258, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.345102506, y: null}, {x: 0.040636042, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.098654709, y: null}, {x: 0.08361204, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.174556213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059701493, y: null}, {x: 0.274011299, y: null}, {x: 0.237435009, y: null}, {x: 0.307692308, y: null}, {x: 0.039215686, y: null}, {x: 0.083850932, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.073474471, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046590909, y: null}, {x: 0.214814815, y: null}, {x: 0.120734908, y: null}, {x: 0.138235294, y: null}, {x: 0.063917526, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: 32.512411}, {x: 0.168639053, y: null}, {x: 0.340206186, y: null}, {x: 0.308016878, y: null}, {x: 0.077862595, y: null}, {x: 0.051212938, y: null}, {x: 0.161572052, y: null}, {x: 0.213219616, y: null}, {x: 0.333333333, y: null}, {x: 0.456839309, y: null}, {x: 0.498771499, y: null}, {x: 0.25498008, y: null}, {x: 0.180376611, y: null}, {x: 0.148688047, y: null}, {x: 0.232704403, y: null}, {x: 0.078397213, y: null}, {x: 0.220657277, y: null}, {x: 0.0, y: null}, {x: 0.327536232, y: null}, {x: 0.050847458, y: null}, {x: 0.104081633, y: null}, {x: 0.115566038, y: null}, {x: 0.0, y: null}, {x: 0.415857605, y: null}, {x: 0.029279279, y: null}, {x: 0.024299065, y: null}, {x: 0.046070461, y: null}, {x: 0.142023346, y: null}, {x: 0.176043557, y: null}, {x: 0.159914712, y: null}, {x: 0.095723014, y: null}, {x: 0.389140272, y: null}, {x: 0.286858974, y: null}, {x: 0.40066778, y: null}, {x: 0.26973027, y: null}, {x: 0.54351145, y: null}, {x: 0.066478076, y: null}, {x: 0.203324808, y: 144.338492}, {x: 0.548148148, y: null}, {x: 0.242378049, y: null}, {x: 0.24, y: null}, {x: 0.405867971, y: null}, {x: 0.24173028, y: null}, {x: 0.130630631, y: null}, {x: 0.107936508, y: null}, {x: 0.31147541, y: null}, {x: 0.0, y: null}, {x: 0.063732929, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.058659218, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.07244898, y: null}, {x: 0.0, y: null}, {x: 0.012254902, y: null}, {x: 0.049222798, y: null}, {x: 0.21448468, y: null}, {x: 0.064085447, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020378457, y: null}, {x: 0.0, y: null}, {x: 0.143884892, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02739726, y: null}, {x: 0.0, y: null}, {x: 0.050827423, y: null}, {x: 0.020044543, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012793177, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030241935, y: null}, {x: 0.015358362, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009463722, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033846154, y: null}, {x: 0.035233161, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.077272727, y: null}, {x: 0.031578947, y: null}, {x: 0.045177045, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061251664, y: null}, {x: 0.041666667, y: null}, {x: 0.097201767, y: null}, {x: 0.088669951, y: null}, {x: 0.156316917, y: null}, {x: 0.016556291, y: null}, {x: 0.120111732, y: null}, {x: 0.021806854, y: null}, {x: 0.292479109, y: null}, {x: 0.148648649, y: null}, {x: 0.125454546, y: null}, {x: 0.0, y: null}, {x: 0.129411765, y: null}, {x: 0.011450382, y: null}, {x: 0.0, y: null}, {x: 0.020632737, y: null}, {x: 0.062374245, y: null}, {x: 0.0, y: null}, {x: 0.024608501, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.06779661, y: null}, {x: 0.056798623, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.01547619, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05794702, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02905569, y: null}, {x: 0.042416452, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02994012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030188679, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.191964286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050675676, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025405787, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.093959732, y: null}, {x: 0.097560976, y: null}, {x: 0.111380145, y: null}, {x: 0.051437216, y: null}, {x: 0.0, y: null}, {x: 0.10940919, y: null}, {x: 0.0, y: null}, {x: 0.134790528, y: null}, {x: 0.07173913, y: null}, {x: 0.17679558, y: null}, {x: 0.04551201, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01980198, y: null}, {x: 0.0, y: null}, {x: 0.084168337, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015911873, y: null}, {x: 0.0, y: null}, {x: 0.0215311, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.89}, {x: 0.0, y: null}, {x: 0.05372617, y: null}, {x: 0.041728763, y: null}, {x: 0.0, y: 0.18}, {x: 0.010158014, y: null}, {x: 0.00872818, y: 0.276}, {x: 0.016997167, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045133992, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.393442623, y: 176.54059600000002}, {x: 0.313210849, y: null}, {x: 0.116154873, y: null}, {x: 0.157360406, y: null}, {x: 0.050802139, y: null}, {x: 0.314855876, y: null}, {x: 0.424802111, y: null}, {x: 0.183098592, y: null}, {x: 0.418367347, y: null}, {x: 0.422619048, y: null}, {x: 0.258205689, y: null}, {x: 0.413294798, y: null}, {x: 0.294478528, y: null}, {x: 0.405353729, y: null}, {x: 0.200371058, y: null}, {x: 0.574870912, y: null}, {x: 0.405759162, y: null}, {x: 0.213618158, y: null}, {x: 0.379248658, y: null}, {x: 0.479041916, y: null}, {x: 0.071782178, y: null}, {x: 0.057654076, y: null}, {x: 0.14978903, y: null}, {x: 0.0, y: null}, {x: 0.541052632, y: null}, {x: 0.607709751, y: null}, {x: 0.45026178, y: 6.126247}, {x: 0.252115059, y: null}, {x: 0.497360085, y: null}, {x: 0.120274914, y: null}, {x: 0.521052632, y: null}, {x: 0.500703235, y: null}, {x: 0.526734926, y: null}, {x: 0.18579235, y: null}, {x: 0.296482412, y: null}, {x: 0.357045144, y: null}, {x: 0.080701754, y: null}, {x: 0.212454213, y: null}, {x: 0.069637883, y: null}, {x: 0.317391304, y: null}, {x: 0.255681818, y: null}, {x: 0.154074074, y: null}, {x: 0.0, y: null}, {x: 0.285053929, y: null}, {x: 0.089403974, y: 38.4927}, {x: 0.323453608, y: null}, {x: 0.505555556, y: null}, {x: 0.41509434, y: null}, {x: 0.034696406, y: null}, {x: 0.368852459, y: null}, {x: 0.419161677, y: null}, {x: 0.261029412, y: null}, {x: 0.027075812, y: null}, {x: 0.225531915, y: null}, {x: 0.158995816, y: null}, {x: 0.021505376, y: null}, {x: 0.043478261, y: null}, {x: 0.0, y: null}, {x: 0.04505814, y: null}, {x: 0.031746032, y: null}, {x: 0.0, y: null}, {x: 0.030405405, y: null}, {x: 0.124444444, y: null}, {x: 0.013513514, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.196261682, y: null}, {x: 0.096267191, y: null}, {x: 0.0, y: null}, {x: 0.375930521, y: null}, {x: 0.067209776, y: null}, {x: 0.104417671, y: null}, {x: 0.131294964, y: null}, {x: 0.19851577, y: null}, {x: 0.001146789, y: null}, {x: 0.0, y: null}, {x: 0.037735849, y: null}, {x: 0.007352941, y: null}, {x: 0.021881838, y: null}, {x: 0.018126888, y: null}, {x: 0.132743363, y: null}, {x: 0.140625, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.01426025, y: null}, {x: 0.0, y: null}, {x: 0.014440433, y: null}, {x: 0.0, y: null}, {x: 0.067857143, y: null}, {x: 0.024203822, y: null}, {x: 0.128787879, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095923261, y: null}, {x: 0.051792829, y: null}, {x: 0.036649215, y: 57.7297}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068877551, y: null}, {x: 0.0, y: null}, {x: 0.090517241, y: null}, {x: 0.0, y: null}, {x: 0.025, y: null}, {x: 0.018281536, y: null}, {x: 0.041564792, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010752688, y: null}, {x: 0.024793388, y: null}, {x: 0.035714286, y: null}, {x: 0.0, y: null}, {x: 0.025536261, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.049865229, y: null}, {x: 0.076458753, y: null}, {x: 0.0, y: null}, {x: 0.010028653, y: null}, {x: 0.028358209, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068571429, y: null}, {x: 0.0, y: null}, {x: 0.040966387, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.070921986, y: null}, {x: 0.19005102, y: null}, {x: 0.017797553, y: null}, {x: 0.031088083, y: null}, {x: 0.13452381, y: null}, {x: 0.102848101, y: 26.852272}, {x: 0.179584121, y: 17.432869}, {x: 0.0, y: null}, {x: 0.068759342, y: null}, {x: 0.07135362, y: 2.114101}, {x: 0.041050903, y: null}, {x: 0.03030303, y: 27.576203}, {x: 0.0, y: null}, {x: 0.013227513, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02698145, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022222222, y: null}, {x: 0.080357143, y: null}, {x: 0.029328288, y: 9.574524}, {x: 0.029020556, y: null}, {x: 0.092996556, y: null}, {x: 0.025984252, y: 17.33541}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.060263653, y: null}, {x: 0.041407867, y: null}, {x: 0.02685624, y: 19.605847}, {x: 0.0, y: null}, {x: 0.0, y: 0.363247}, {x: 0.0, y: null}, {x: 0.0, y: 51.7282}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019886364, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035714286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029216467, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092417062, y: null}, {x: 0.0, y: null}, {x: 0.029100529, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02238806, y: null}, {x: 0.0, y: null}, {x: 0.034862385, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005813953, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043715847, y: null}, {x: 0.0, y: null}, {x: 0.061349693, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027855153, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010373444, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.00166113, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004914005, y: null}, {x: 0.015177066, y: null}, {x: 0.00486618, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.751364}, {x: 0.0, y: null}, {x: 0.044280443, y: null}, {x: 0.0, y: null}, {x: 0.020979021, y: null}, {x: 0.0, y: 0.6538919999999999}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01174743, y: null}, {x: 0.051020408, y: null}, {x: 0.056179775, y: null}, {x: 0.037837838, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034050179, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018987342, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033854167, y: null}, {x: 0.082191781, y: null}, {x: 0.056689342, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.056737589, y: null}, {x: 0.132183908, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043478261, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04375, y: null}, {x: 0.068597561, y: null}, {x: 0.038636364, y: null}, {x: 0.028257457, y: null}, {x: 0.029275809, y: null}, {x: 0.194936709, y: 19.621000000000002}, {x: 0.152487962, y: null}, {x: 0.078125, y: null}, {x: 0.0, y: null}, {x: 0.097759674, y: null}, {x: 0.0, y: null}, {x: 0.045584046, y: null}, {x: 0.072056239, y: null}, {x: 0.034068136, y: null}, {x: 0.196946565, y: null}, {x: 0.091445428, y: null}, {x: 0.12, y: null}, {x: 0.194274029, y: null}, {x: 0.387096774, y: null}, {x: 0.0, y: null}, {x: 0.033138402, y: null}, {x: 0.234899329, y: null}, {x: 0.378980892, y: null}, {x: 0.138121547, y: null}, {x: 0.0, y: null}, {x: 0.461038961, y: null}, {x: 0.365296804, y: null}, {x: 0.3866171, y: null}, {x: 0.397333333, y: null}, {x: 0.372657111, y: 37.631}, {x: 0.383193277, y: null}, {x: 0.434782609, y: null}, {x: 0.371034483, y: null}, {x: 0.445409429, y: null}, {x: 0.146907217, y: null}, {x: 0.393715342, y: 739.527068}, {x: 0.111904762, y: null}, {x: 0.666666667, y: null}, {x: 0.288537549, y: null}, {x: 0.259668508, y: null}, {x: 0.053380783, y: null}, {x: 0.340694006, y: null}, {x: 0.288590604, y: null}, {x: 0.145390071, y: null}, {x: 0.0, y: null}, {x: 0.122370937, y: null}, {x: 0.384863124, y: null}, {x: 0.04735376, y: null}, {x: 0.218818381, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065843621, y: null}, {x: 0.056451613, y: null}, {x: 0.031311155, y: null}, {x: 0.0, y: null}, {x: 0.216572505, y: null}, {x: 0.019354839, y: null}, {x: 0.140661939, y: null}, {x: 0.084337349, y: null}, {x: 0.0, y: null}, {x: 0.024390244, y: null}, {x: 0.0, y: null}, {x: 0.008517888, y: null}, {x: 0.072463768, y: null}, {x: 0.05015674, y: null}, {x: 0.040816327, y: null}, {x: 0.0, y: null}, {x: 0.019571295, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.072897196, y: null}, {x: 0.019354839, y: null}, {x: 0.063218391, y: null}, {x: 0.088495575, y: null}, {x: 0.02393617, y: null}, {x: 0.161691542, y: null}, {x: 0.228813559, y: null}, {x: 0.0, y: null}, {x: 0.070680628, y: null}, {x: 0.165441177, y: null}, {x: 0.077647059, y: null}, {x: 0.13986014, y: null}, {x: 0.422360248, y: null}, {x: 0.206422018, y: null}, {x: 0.105571848, y: 27.040660999999997}, {x: 0.188592456, y: 81.680767}, {x: 0.413510747, y: null}, {x: 0.20046083, y: null}, {x: 0.428571429, y: null}, {x: 0.203045685, y: 198.331469}, {x: 0.29924812, y: null}, {x: 0.28, y: null}, {x: 0.186813187, y: null}, {x: 0.081081081, y: null}, {x: 0.02811245, y: null}, {x: 0.11036036, y: null}, {x: 0.144249513, y: null}, {x: 0.0, y: null}, {x: 0.11409396, y: 7.279}, {x: 0.234939759, y: null}, {x: 0.107594937, y: null}, {x: 0.12716763, y: null}, {x: 0.066907776, y: null}, {x: 0.33037037, y: null}, {x: 0.159217877, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068527919, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005444646, y: null}, {x: 0.0, y: null}, {x: 0.052631579, y: null}, {x: 0.022260274, y: null}, {x: 0.158024691, y: null}, {x: 0.0, y: null}, {x: 0.036666667, y: null}, {x: 0.030998852, y: null}, {x: 0.0, y: null}, {x: 0.072580645, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020151134, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010416667, y: null}, {x: 0.101851852, y: null}, {x: 0.270114943, y: null}, {x: 0.21669627, y: null}, {x: 0.135514019, y: null}, {x: 0.108555658, y: null}, {x: 0.0, y: null}, {x: 0.04107425, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024619841, y: null}, {x: 0.0, y: null}, {x: 0.116357504, y: null}, {x: 0.0, y: null}, {x: 0.026064292, y: null}, {x: 0.0, y: 1.005625}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.206597222, y: null}, {x: 0.016806723, y: 21.590654999999998}, {x: 0.147426982, y: 2.36377}, {x: 0.066964286, y: null}, {x: 0.07518797, y: 69.454067}, {x: 0.096774194, y: null}, {x: 0.084337349, y: null}, {x: 0.0, y: null}, {x: 0.077389985, y: null}, {x: 0.0, y: null}, {x: 0.058103976, y: null}, {x: 0.0, y: null}, {x: 0.029484029, y: null}, {x: 0.037135279, y: 4.023005}, {x: 0.039622642, y: null}, {x: 0.0, y: 15.273601}, {x: 0.0, y: null}, {x: 0.115027829, y: null}, {x: 0.145762712, y: null}, {x: 0.224274406, y: null}, {x: 0.253507014, y: 17.667698}, {x: 0.035816619, y: 130.09780700000002}, {x: 0.034782609, y: null}, {x: 0.020030817, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.08531746, y: null}, {x: 0.0, y: null}, {x: 0.036333609, y: 98.279335}, {x: 0.0, y: 0.465397}, {x: 0.0, y: null}, {x: 0.031141869, y: null}, {x: 0.029166667, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.4325, y: null}, {x: 0.333333333, y: null}, {x: 0.175324675, y: null}, {x: 0.294117647, y: null}, {x: 0.394822007, y: null}, {x: 0.551020408, y: 1.850684}, {x: 0.314049587, y: null}, {x: 0.444210526, y: null}, {x: 0.637288136, y: 211.675397}, {x: 0.362391034, y: null}, {x: 0.043037975, y: null}, {x: 0.225433526, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.326424871, y: null}, {x: 0.0, y: 106.444359}, {x: 0.051980198, y: 2.454447}, {x: 0.0, y: null}, {x: 0.616045845, y: null}, {x: 0.0, y: null}, {x: 0.317021277, y: null}, {x: 0.0, y: null}, {x: 0.080513419, y: null}, {x: 0.0, y: null}, {x: 0.068877551, y: null}, {x: 0.025, y: null}, {x: 0.027554535, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 617.717181}, {x: 0.152697095, y: 0.620762}, {x: 0.104095563, y: null}, {x: 0.044502618, y: null}, {x: 0.136, y: null}, {x: 0.147663551, y: null}, {x: 0.113128492, y: null}, {x: 0.0, y: null}, {x: 0.092964824, y: null}, {x: 0.104347826, y: null}, {x: 0.048494983, y: null}, {x: 0.0, y: null}, {x: 0.011483254, y: null}, {x: 0.0, y: null}, {x: 0.109808102, y: null}, {x: 0.054580897, y: null}, {x: 0.056390977, y: null}, {x: 0.136729223, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.06405694, y: null}, {x: 0.0, y: null}, {x: 0.041269841, y: null}, {x: 0.065830721, y: null}, {x: 0.028571429, y: null}, {x: 0.098360656, y: null}, {x: 0.0, y: null}, {x: 0.169745958, y: null}, {x: 0.05106383, y: null}, {x: 0.01621074, y: null}, {x: 0.0, y: null}, {x: 0.0975, y: null}, {x: 0.0, y: null}, {x: 0.027687296, y: null}, {x: 0.0, y: null}, {x: 0.079457364, y: null}, {x: 0.0, y: null}, {x: 0.058503401, y: null}, {x: 0.118243243, y: null}, {x: 0.201298701, y: null}, {x: 0.011655012, y: null}, {x: 0.049618321, y: null}, {x: 0.060457516, y: null}, {x: 0.017958412, y: null}, {x: 0.0, y: null}, {x: 0.009198423, y: null}, {x: 0.0, y: null}, {x: 0.095744681, y: null}, {x: 0.092105263, y: null}, {x: 0.008323424, y: null}, {x: 0.009485095, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007207207, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047277937, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026986507, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.086350975, y: null}, {x: 0.0, y: null}, {x: 0.011695906, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041884817, y: null}, {x: 0.081836327, y: null}, {x: 0.0, y: null}, {x: 0.043363995, y: null}, {x: 0.088039867, y: 385.927118}, {x: 0.0, y: 2.816}, {x: 0.0, y: null}, {x: 0.014880952, y: null}, {x: 0.020737327, y: null}, {x: 0.0, y: null}, {x: 0.028037383, y: null}, {x: 0.007692308, y: null}, {x: 0.008695652, y: null}, {x: 0.007374631, y: null}, {x: 0.063694268, y: null}, {x: 0.0, y: null}, {x: 0.020089286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046328671, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025562372, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010596026, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018739353, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031190926, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009208103, y: null}, {x: 0.048582996, y: null}, {x: 0.084291188, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028753994, y: null}, {x: 0.0, y: null}, {x: 0.014371257, y: null}, {x: 0.138592751, y: null}, {x: 0.04587156, y: null}, {x: 0.0, y: null}, {x: 0.030888031, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036423841, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052313883, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007326007, y: null}, {x: 0.089866157, y: null}, {x: 0.057971014, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041860465, y: null}, {x: 0.105263158, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026109661, y: null}, {x: 0.02189781, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032225579, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.45}, {x: 0.005896226, y: null}, {x: 0.071618037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041499331, y: null}, {x: 0.016393443, y: null}, {x: 0.093706294, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039840637, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.108739837, y: null}, {x: 0.0, y: null}, {x: 0.048635824, y: null}, {x: 0.028391167, y: null}, {x: 0.0, y: null}, {x: 0.046312178, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045454545, y: null}, {x: 0.0, y: null}, {x: 0.023584906, y: 5e-05}, {x: 0.036328872, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017201835, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065306122, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038596491, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022075055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02173913, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.283557047, y: null}, {x: 0.181008902, y: null}, {x: 0.066528067, y: null}, {x: 0.164930556, y: null}, {x: 0.168814433, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2479.88946}, {x: 0.098404255, y: null}, {x: 0.037931034, y: null}, {x: 0.040723982, y: null}, {x: 0.130091984, y: null}, {x: 0.100574713, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061403509, y: null}, {x: 0.032258065, y: 482.90002}, {x: 0.226337449, y: null}, {x: 0.384615385, y: 67.833}, {x: 0.033587786, y: null}, {x: 0.009708738, y: null}, {x: 0.047453704, y: null}, {x: 0.154175589, y: null}, {x: 0.076142132, y: null}, {x: 0.015513126, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.091286307, y: null}, {x: 0.052469136, y: null}, {x: 0.0, y: 55.29}, {x: 0.221350079, y: null}, {x: 0.09929078, y: null}, {x: 0.12, y: null}, {x: 0.025449102, y: null}, {x: 0.141426784, y: null}, {x: 0.124620061, y: null}, {x: 0.186440678, y: null}, {x: 0.152866242, y: null}, {x: 0.080392157, y: null}, {x: 0.096774194, y: null}, {x: 0.108, y: null}, {x: 0.097027972, y: null}, {x: 0.0, y: null}, {x: 0.177062374, y: null}, {x: 0.094302554, y: null}, {x: 0.097069597, y: null}, {x: 0.083333333, y: null}, {x: 0.02739726, y: null}, {x: 0.0, y: null}, {x: 0.08852459, y: null}, {x: 0.127937337, y: null}, {x: 0.089595376, y: null}, {x: 0.121212121, y: null}, {x: 0.235602094, y: null}, {x: 0.060085837, y: null}, {x: 0.252045827, y: null}, {x: 0.473229706, y: null}, {x: 0.166904422, y: null}, {x: 0.113333333, y: null}, {x: 0.209109731, y: null}, {x: 0.082474227, y: null}, {x: 0.076335878, y: null}, {x: 0.125, y: null}, {x: 0.071343639, y: null}, {x: 0.196202532, y: null}, {x: 0.152866242, y: null}, {x: 0.07204611, y: null}, {x: 0.152597403, y: null}, {x: 0.070826307, y: null}, {x: 0.062034739, y: null}, {x: 0.09375, y: 199.24}, {x: 0.144537815, y: null}, {x: 0.036697248, y: 654.51638}, {x: 0.0, y: null}, {x: 0.056626506, y: null}, {x: 0.02090209, y: null}, {x: 0.138576779, y: null}, {x: 0.0, y: null}, {x: 0.08681672, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054151625, y: null}, {x: 0.073394495, y: null}, {x: 0.0, y: null}, {x: 0.042553191, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039045553, y: null}, {x: 0.0, y: null}, {x: 0.020604396, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030769231, y: null}, {x: 0.01912261, y: null}, {x: 0.142857143, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045908184, y: null}, {x: 0.0, y: null}, {x: 0.009950249, y: null}, {x: 0.021321962, y: null}, {x: 0.037698413, y: null}, {x: 0.0, y: null}, {x: 0.01302682, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023782559, y: null}, {x: 0.028497409, y: null}, {x: 0.014851485, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02303263, y: null}, {x: 0.032335329, y: null}, {x: 0.024305556, y: null}, {x: 0.053030303, y: null}, {x: 0.026845638, y: null}, {x: 0.013774105, y: null}, {x: 0.024875622, y: null}, {x: 0.0, y: null}, {x: 0.016363636, y: null}, {x: 0.0, y: null}, {x: 0.04445919, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055194805, y: null}, {x: 0.0, y: null}, {x: 0.051204819, y: null}, {x: 0.0, y: null}, {x: 0.025280899, y: null}, {x: 0.016081871, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034574468, y: 396.4304}, {x: 0.058035714, y: null}, {x: 0.107189543, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023776224, y: null}, {x: 0.01773399, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.070205479, y: null}, {x: 0.073226545, y: null}, {x: 0.032520325, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0110957, y: null}, {x: 0.0, y: null}, {x: 0.031591738, y: null}, {x: 0.105263158, y: null}, {x: 0.031165312, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02851711, y: null}, {x: 0.02154195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02640264, y: null}, {x: 0.010526316, y: null}, {x: 0.0, y: null}, {x: 0.016472868, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017951426, y: null}, {x: 0.061417323, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051239669, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046483909, y: null}, {x: 0.054464286, y: null}, {x: 0.172032193, y: null}, {x: 0.0, y: null}, {x: 0.085843373, y: null}, {x: 0.045346062, y: null}, {x: 0.06779661, y: null}, {x: 0.215025907, y: null}, {x: 0.0, y: null}, {x: 0.07106599, y: null}, {x: 0.110228401, y: null}, {x: 0.178913738, y: null}, {x: 0.173370319, y: null}, {x: 0.0, y: null}, {x: 0.044267877, y: null}, {x: 0.045555556, y: null}, {x: 0.236588721, y: null}, {x: 0.0, y: null}, {x: 0.012974052, y: null}, {x: 0.107773852, y: null}, {x: 0.0, y: null}, {x: 0.150621118, y: null}, {x: 0.168122271, y: null}, {x: 0.064814815, y: null}, {x: 0.055624227, y: null}, {x: 0.063786008, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.127576055, y: null}, {x: 0.075647668, y: null}, {x: 0.077596996, y: null}, {x: 0.0, y: null}, {x: 0.076358297, y: null}, {x: 0.034343434, y: null}, {x: 0.057057057, y: null}, {x: 0.144927536, y: null}, {x: 0.0, y: null}, {x: 0.033762058, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017507724, y: null}, {x: 0.0, y: null}, {x: 0.070707071, y: null}, {x: 0.018404908, y: null}, {x: 0.003333333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040449438, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029411765, y: null}, {x: 0.0, y: null}, {x: 0.024128686, y: null}, {x: 0.0, y: null}, {x: 0.125748503, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020289855, y: null}, {x: 0.011627907, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040449438, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02006689, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066576087, y: null}, {x: 0.0, y: null}, {x: 0.037313433, y: null}, {x: 0.0, y: null}, {x: 0.041778976, y: null}, {x: 0.0, y: null}, {x: 0.026359143, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011350738, y: null}, {x: 0.0, y: null}, {x: 0.042253521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040629096, y: null}, {x: 0.0, y: null}, {x: 0.021818182, y: null}, {x: 0.0, y: null}, {x: 0.040451552, y: null}, {x: 0.0, y: null}, {x: 0.039235412, y: null}, {x: 0.0, y: null}, {x: 0.031847134, y: null}, {x: 0.07217695, y: null}, {x: 0.046218487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033444816, y: null}, {x: 0.0, y: null}, {x: 0.024523161, y: null}, {x: 0.0, y: null}, {x: 0.017348203, y: null}, {x: 0.022749753, y: null}, {x: 0.032432432, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0456621, y: null}, {x: 0.091743119, y: null}, {x: 0.0, y: null}, {x: 0.117546848, y: null}, {x: 0.106854839, y: null}, {x: 0.080445545, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043052838, y: null}, {x: 0.0, y: null}, {x: 0.057522124, y: null}, {x: 0.034482759, y: null}, {x: 0.061983471, y: null}, {x: 0.177014531, y: null}, {x: 0.068846816, y: null}, {x: 0.050824176, y: null}, {x: 0.086007702, y: null}, {x: 0.0, y: null}, {x: 0.022807018, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032653061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046476762, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052447552, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089403974, y: null}, {x: 0.0, y: null}, {x: 0.081300813, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04954955, y: null}, {x: 0.042168675, y: null}, {x: 0.02266289, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016528926, y: null}, {x: 0.037878788, y: null}, {x: 0.0, y: null}, {x: 0.036655212, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089576547, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.073684211, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.069767442, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092819615, y: null}, {x: 0.0, y: null}, {x: 0.102902375, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046218487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026, y: null}, {x: 0.0, y: null}, {x: 0.126394052, y: null}, {x: 0.035514019, y: null}, {x: 0.0, y: null}, {x: 0.021943574, y: null}, {x: 0.268571429, y: null}, {x: 0.150980392, y: null}, {x: 0.062962963, y: null}, {x: 0.0, y: null}, {x: 0.027240773, y: null}, {x: 0.0, y: null}, {x: 0.041753653, y: null}, {x: 0.010954617, y: null}, {x: 0.0, y: null}, {x: 0.205250597, y: null}, {x: 0.041666667, y: null}, {x: 0.0, y: null}, {x: 0.045375218, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017886179, y: null}, {x: 0.016042781, y: null}, {x: 0.0, y: null}, {x: 0.015765766, y: null}, {x: 0.0, y: null}, {x: 0.012131716, y: null}, {x: 0.070866142, y: null}, {x: 0.0, y: null}, {x: 0.107186358, y: null}, {x: 0.0, y: null}, {x: 0.086378738, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.129120879, y: null}, {x: 0.0, y: null}, {x: 0.013333333, y: null}, {x: 0.066225166, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017716535, y: null}, {x: 0.024615385, y: null}, {x: 0.125490196, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.078703704, y: null}, {x: 0.0, y: null}, {x: 0.030092593, y: null}, {x: 0.023593466, y: null}, {x: 0.0, y: null}, {x: 0.05952381, y: null}, {x: 0.144262295, y: null}, {x: 0.009153318, y: null}, {x: 0.253333333, y: null}, {x: 0.021479714, y: null}, {x: 0.0, y: 68.97}, {x: 0.0, y: null}, {x: 0.06244087, y: null}, {x: 0.041980624, y: null}, {x: 0.141356256, y: null}, {x: 0.261538462, y: null}, {x: 0.0, y: null}, {x: 0.185654008, y: null}, {x: 0.0, y: null}, {x: 0.054054054, y: null}, {x: 0.034, y: null}, {x: 0.0, y: null}, {x: 0.289198606, y: null}, {x: 0.097402597, y: null}, {x: 0.103658537, y: null}, {x: 0.048442907, y: null}, {x: 0.279835391, y: null}, {x: 0.1, y: null}, {x: 0.038888889, y: null}, {x: 0.095823096, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.107526882, y: null}, {x: 0.207627119, y: null}, {x: 0.096618357, y: null}, {x: 0.288359788, y: null}, {x: 0.120262391, y: null}, {x: 0.0, y: null}, {x: 0.169102297, y: null}, {x: 0.567708333, y: null}, {x: 0.107623318, y: null}, {x: 0.119533528, y: null}, {x: 0.339250493, y: null}, {x: 0.14973262, y: null}, {x: 0.199416342, y: null}, {x: 0.108391608, y: null}, {x: 0.242307692, y: null}, {x: 0.234722222, y: null}, {x: 0.134490239, y: null}, {x: 0.302752294, y: null}, {x: 0.326446281, y: null}, {x: 0.209265176, y: null}, {x: 0.131355932, y: null}, {x: 0.145557656, y: null}, {x: 0.056603774, y: null}, {x: 0.35971223, y: null}, {x: 0.125874126, y: null}, {x: 0.206997085, y: null}, {x: 0.329949239, y: null}, {x: 0.0, y: null}, {x: 0.089655172, y: null}, {x: 0.084536082, y: null}, {x: 0.053398058, y: null}, {x: 0.0, y: null}, {x: 0.10989011, y: null}, {x: 0.0, y: null}, {x: 0.128113879, y: null}, {x: 0.281368821, y: null}, {x: 0.206543967, y: null}, {x: 0.143872114, y: null}, {x: 0.338666667, y: null}, {x: 0.041158537, y: null}, {x: 0.219435737, y: null}, {x: 0.533333333, y: null}, {x: 0.415708812, y: null}, {x: 0.33481153, y: null}, {x: 0.082733813, y: null}, {x: 0.082758621, y: null}, {x: 0.043973941, y: null}, {x: 0.168301887, y: null}, {x: 0.061290323, y: null}, {x: 0.059278351, y: null}, {x: 0.13898917, y: null}, {x: 0.0, y: null}, {x: 0.241883117, y: null}, {x: 0.0, y: null}, {x: 0.2375, y: null}, {x: 0.188010899, y: null}, {x: 0.14004914, y: null}, {x: 0.205128205, y: null}, {x: 0.144249513, y: null}, {x: 0.174285714, y: null}, {x: 0.233031674, y: null}, {x: 0.565995526, y: null}, {x: 0.235588972, y: null}, {x: 0.265346535, y: null}, {x: 0.174447174, y: null}, {x: 0.225913621, y: null}, {x: 0.033557047, y: null}, {x: 0.127586207, y: null}, {x: 0.190476191, y: null}, {x: 0.177902622, y: null}, {x: 0.281437126, y: null}, {x: 0.114722753, y: null}, {x: 0.00805153, y: null}, {x: 0.407079646, y: null}, {x: 0.022222222, y: null}, {x: 0.0, y: null}, {x: 0.172222222, y: null}, {x: 0.292134832, y: null}, {x: 0.0, y: null}, {x: 0.297235023, y: null}, {x: 0.044585987, y: null}, {x: 0.227083333, y: null}, {x: 0.064467766, y: null}, {x: 0.0, y: null}, {x: 0.335044929, y: null}, {x: 0.189937107, y: null}, {x: 0.166666667, y: null}, {x: 0.102199224, y: null}, {x: 0.168949772, y: null}, {x: 0.181514477, y: null}, {x: 0.054522924, y: null}, {x: 0.279094828, y: null}, {x: 0.0, y: null}, {x: 0.058479532, y: null}, {x: 0.227891157, y: null}, {x: 0.058585859, y: null}, {x: 0.065810594, y: null}, {x: 0.119587629, y: null}, {x: 0.126470588, y: null}, {x: 0.01399689, y: null}, {x: 0.06744868, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018759019, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042654028, y: null}, {x: 0.0, y: null}, {x: 0.034246575, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046065259, y: null}, {x: 0.063291139, y: null}, {x: 0.070422535, y: null}, {x: 0.206235012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.091883614, y: null}, {x: 0.0, y: null}, {x: 0.032319392, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.235294118, y: null}, {x: 0.024475524, y: null}, {x: 0.0, y: null}, {x: 0.1, y: null}, {x: 0.06271777, y: null}, {x: 0.11786372, y: null}, {x: 0.0, y: null}, {x: 0.018108652, y: null}, {x: 0.0, y: null}, {x: 0.099576271, y: null}, {x: 0.072115385, y: null}, {x: 0.0, y: null}, {x: 0.092063492, y: null}, {x: 0.0203125, y: null}, {x: 0.0, y: null}, {x: 0.096064815, y: null}, {x: 0.140186916, y: null}, {x: 0.057507987, y: null}, {x: 0.319248826, y: null}, {x: 0.139616056, y: null}, {x: 0.116838488, y: null}, {x: 0.23015873, y: null}, {x: 0.205128205, y: null}, {x: 0.088888889, y: null}, {x: 0.152097902, y: null}, {x: 0.172523962, y: null}, {x: 0.019704434, y: null}, {x: 0.0, y: null}, {x: 0.016203704, y: null}, {x: 0.164300203, y: null}, {x: 0.35483871, y: null}, {x: 0.019047619, y: null}, {x: 0.067385445, y: null}, {x: 0.122147651, y: null}, {x: 0.029374202, y: 2.8}, {x: 0.066066066, y: null}, {x: 0.083160083, y: null}, {x: 0.012987013, y: null}, {x: 0.0, y: null}, {x: 0.118568233, y: null}, {x: 0.119122257, y: null}, {x: 0.001658375, y: null}, {x: 0.01971831, y: null}, {x: 0.060273973, y: null}, {x: 0.013808976, y: null}, {x: 0.030075188, y: null}, {x: 0.268336315, y: null}, {x: 0.075496689, y: null}, {x: 0.0, y: null}, {x: 0.011612903, y: null}, {x: 0.052066116, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.104770017, y: null}, {x: 0.017045455, y: null}, {x: 0.0, y: null}, {x: 1.0, y: null}, {x: 0.0, y: null}, {x: 0.033868093, y: null}, {x: 0.01793722, y: null}, {x: 0.089552239, y: null}, {x: 0.0, y: null}, {x: 0.070818071, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.098880597, y: null}, {x: 0.0, y: null}, {x: 0.17791411, y: null}, {x: 0.123123123, y: null}, {x: 0.085889571, y: null}, {x: 0.04665826, y: null}, {x: 0.074168798, y: null}, {x: 0.090686275, y: null}, {x: 0.050420168, y: null}, {x: 0.067961165, y: null}, {x: 0.0, y: null}, {x: 0.010830325, y: null}, {x: 0.020522388, y: null}, {x: 0.104874446, y: null}, {x: 0.066176471, y: null}, {x: 0.017333333, y: 1.38}, {x: 0.0, y: null}, {x: 0.061269147, y: 3.71}, {x: 0.0, y: null}, {x: 0.061389338, y: null}, {x: 0.03021978, y: null}, {x: 0.022140221, y: null}, {x: 0.0, y: null}, {x: 0.036036036, y: null}, {x: 0.016227181, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.048628429, y: null}, {x: 0.03931848, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.159045726, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.058551618, y: null}, {x: 0.098214286, y: null}, {x: 0.105849582, y: null}, {x: 0.10701107, y: null}, {x: 0.014925373, y: null}, {x: 0.124590164, y: null}, {x: 0.462857143, y: null}, {x: 0.062761506, y: null}, {x: 0.016563147, y: null}, {x: 0.029059829, y: 1.975}, {x: 0.021276596, y: null}, {x: 0.0, y: null}, {x: 0.022788204, y: null}, {x: 0.026578073, y: 45.306}, {x: 0.055319149, y: null}, {x: 0.177747626, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085889571, y: null}, {x: 0.0, y: null}, {x: 0.177446103, y: null}, {x: 0.0, y: null}, {x: 0.150214592, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081850534, y: null}, {x: 0.0, y: null}, {x: 0.030405405, y: null}, {x: 0.07660021, y: null}, {x: 0.0, y: null}, {x: 0.025510204, y: null}, {x: 0.073359073, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055155875, y: null}, {x: 0.181488203, y: null}, {x: 0.010404624, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.149405773, y: 12.033039}, {x: 0.005181347, y: null}, {x: 0.127272727, y: null}, {x: 0.050179211, y: null}, {x: 0.09765625, y: null}, {x: 0.0, y: null}, {x: 0.060869565, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061806656, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095823096, y: null}, {x: 0.015831135, y: null}, {x: 0.035591274, y: null}, {x: 0.0, y: null}, {x: 0.125766871, y: null}, {x: 0.025796662, y: null}, {x: 0.016304348, y: null}, {x: 0.025575448, y: null}, {x: 0.016574586, y: null}, {x: 0.0, y: null}, {x: 0.017605634, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016835017, y: null}, {x: 0.065217391, y: null}, {x: 0.048913043, y: null}, {x: 0.176211454, y: null}, {x: 0.073015873, y: null}, {x: 0.099236641, y: null}, {x: 0.15727003, y: null}, {x: 0.02739726, y: null}, {x: 0.020881671, y: null}, {x: 0.0, y: null}, {x: 0.068627451, y: null}, {x: 0.108108108, y: null}, {x: 0.051118211, y: null}, {x: 0.0, y: null}, {x: 0.015904573, y: null}, {x: 0.106145251, y: null}, {x: 0.029680365, y: null}, {x: 0.071261682, y: null}, {x: 0.021683673, y: null}, {x: 0.0, y: null}, {x: 0.053511706, y: null}, {x: 0.116483517, y: null}, {x: 0.0, y: null}, {x: 0.041666667, y: null}, {x: 0.0, y: null}, {x: 0.019133938, y: null}, {x: 0.191964286, y: null}, {x: 0.0, y: null}, {x: 0.022088353, y: null}, {x: 0.110552764, y: null}, {x: 0.033898305, y: null}, {x: 0.193415638, y: null}, {x: 0.023809524, y: null}, {x: 0.0, y: null}, {x: 0.009977827, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035532995, y: null}, {x: 0.0, y: null}, {x: 0.032478632, y: null}, {x: 0.0, y: null}, {x: 0.0176, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055610725, y: null}, {x: 0.030144168, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045364892, y: null}, {x: 0.135635019, y: null}, {x: 0.0, y: null}, {x: 0.018808777, y: null}, {x: 0.0, y: null}, {x: 0.047445255, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066596195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019083969, y: null}, {x: 0.040816327, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042016807, y: null}, {x: 0.0, y: null}, {x: 0.017204301, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021252796, y: null}, {x: 0.03892944, y: null}, {x: 0.0, y: null}, {x: 0.038043478, y: null}, {x: 0.113960114, y: 0.0117}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.181598063, y: null}, {x: 0.0625, y: null}, {x: 0.121666667, y: null}, {x: 0.032608696, y: null}, {x: 0.027600849, y: null}, {x: 0.053380783, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038709677, y: null}, {x: 0.016949153, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074410163, y: null}, {x: 0.0, y: null}, {x: 0.056666667, y: null}, {x: 0.038265306, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025878004, y: null}, {x: 0.020262217, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015189873, y: null}, {x: 0.025974026, y: null}, {x: 0.043956044, y: null}, {x: 0.031862745, y: null}, {x: 0.011293635, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.056603774, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071969697, y: null}, {x: 0.111111111, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061046512, y: null}, {x: 0.021505376, y: null}, {x: 0.0, y: null}, {x: 0.040235525, y: null}, {x: 0.05631068, y: null}, {x: 0.017932489, y: null}, {x: 0.085343228, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043026706, y: null}, {x: 0.0, y: null}, {x: 0.054279749, y: null}, {x: 0.192949907, y: null}, {x: 0.0, y: null}, {x: 0.135542169, y: null}, {x: 0.048598131, y: null}, {x: 0.018571429, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042654028, y: null}, {x: 0.040066778, y: null}, {x: 0.024324324, y: null}, {x: 0.062982005, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103752759, y: null}, {x: 0.081845238, y: null}, {x: 0.0, y: null}, {x: 0.104056437, y: null}, {x: 0.201818182, y: null}, {x: 0.243291592, y: null}, {x: 0.01641791, y: null}, {x: 0.017944535, y: null}, {x: 0.030864198, y: null}, {x: 0.05399061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026086957, y: null}, {x: 0.10310559, y: null}, {x: 0.331125828, y: null}, {x: 0.061583578, y: null}, {x: 0.0, y: null}, {x: 0.027027027, y: null}, {x: 0.035066505, y: null}, {x: 0.086633663, y: null}, {x: 0.023722628, y: null}, {x: 0.022900763, y: null}, {x: 0.0, y: null}, {x: 0.025824964, y: null}, {x: 0.0, y: null}, {x: 0.056818182, y: null}, {x: 0.10567297, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057957682, y: null}, {x: 0.083687943, y: null}, {x: 0.011111111, y: null}, {x: 0.012844037, y: null}, {x: 0.014975042, y: null}, {x: 0.0, y: null}, {x: 0.024024024, y: null}, {x: 0.020454545, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025500911, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.276422764, y: null}, {x: 0.152466368, y: null}, {x: 0.0, y: null}, {x: 0.145958987, y: null}, {x: 0.0, y: null}, {x: 0.059090909, y: null}, {x: 0.076502732, y: null}, {x: 0.056089744, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035532995, y: null}, {x: 0.08852459, y: null}, {x: 0.205702648, y: null}, {x: 0.142642643, y: null}, {x: 0.0, y: null}, {x: 0.020771513, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.161001789, y: null}, {x: 0.031100478, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018617021, y: null}, {x: 0.018292683, y: null}, {x: 0.018789144, y: null}, {x: 0.01312336, y: null}, {x: 0.0, y: null}, {x: 0.051580699, y: null}, {x: 0.0, y: null}, {x: 0.021176471, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032894737, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032537961, y: null}, {x: 0.0, y: null}, {x: 0.009287926, y: null}, {x: 0.093959732, y: null}, {x: 0.082512315, y: null}, {x: 0.037105751, y: null}, {x: 0.120840631, y: null}, {x: 0.0, y: null}, {x: 0.034013605, y: null}, {x: 0.072727273, y: null}, {x: 0.043256997, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.07773386, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.049557522, y: null}, {x: 0.058181818, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041474654, y: null}, {x: 0.020618557, y: null}, {x: 0.0, y: null}, {x: 0.021164021, y: null}, {x: 0.028537455, y: null}, {x: 0.0, y: null}, {x: 0.153164557, y: null}, {x: 0.069767442, y: null}, {x: 0.013133208, y: null}, {x: 0.092631579, y: null}, {x: 0.010309278, y: null}, {x: 0.026392962, y: null}, {x: 0.027950311, y: null}, {x: 0.022988506, y: null}, {x: 0.038095238, y: null}, {x: 0.026200873, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035447761, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040735874, y: null}, {x: 0.046224961, y: null}, {x: 0.0, y: null}, {x: 0.052401747, y: null}, {x: 0.023746702, y: null}, {x: 0.0, y: null}, {x: 0.19126506, y: null}, {x: 0.0, y: null}, {x: 0.135379061, y: null}, {x: 0.203947368, y: null}, {x: 0.028571429, y: null}, {x: 0.198501873, y: null}, {x: 0.052238806, y: null}, {x: 0.065902579, y: null}, {x: 0.099778271, y: null}, {x: 0.019522777, y: null}, {x: 0.276061776, y: null}, {x: 0.452012384, y: null}, {x: 0.480591497, y: null}, {x: 0.325551232, y: null}, {x: 0.177613321, y: null}, {x: 0.243243243, y: null}, {x: 0.156989247, y: null}, {x: 0.149321267, y: null}, {x: 0.03950104, y: null}, {x: 0.440438872, y: null}, {x: 0.0, y: null}, {x: 0.300636943, y: null}, {x: 0.0, y: null}, {x: 0.247552448, y: null}, {x: 0.516778524, y: null}, {x: 0.132764921, y: null}, {x: 0.128484849, y: null}, {x: 0.027227723, y: null}, {x: 0.182149363, y: null}, {x: 0.016620499, y: null}, {x: 0.056338028, y: null}, {x: 0.018018018, y: null}, {x: 0.158227848, y: null}, {x: 0.203791469, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054982818, y: null}, {x: 0.039055404, y: null}, {x: 0.051873199, y: null}, {x: 0.0, y: null}, {x: 0.127596439, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.158730159, y: null}, {x: 0.059196617, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.161048689, y: null}, {x: 0.0, y: null}, {x: 0.145748988, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039792388, y: null}, {x: 0.0, y: null}, {x: 0.027272727, y: null}, {x: 0.059440559, y: null}, {x: 0.0, y: null}, {x: 0.146084337, y: null}, {x: 0.005167959, y: null}, {x: 0.057443366, y: null}, {x: 0.046632124, y: null}, {x: 0.029147982, y: null}, {x: 0.0202977, y: null}, {x: 0.052111411, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081534772, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079726651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076595745, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050200803, y: null}, {x: 0.0, y: null}, {x: 0.033126294, y: null}, {x: 0.0, y: null}, {x: 0.015572859, y: 0.0002}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.27458493, y: null}, {x: 0.120224719, y: null}, {x: 0.176100629, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024577573, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029498525, y: null}, {x: 0.0, y: null}, {x: 0.086021505, y: null}, {x: 0.0, y: null}, {x: 0.14861461, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.18839779, y: null}, {x: 0.379174853, y: null}, {x: 0.059067358, y: null}, {x: 0.0, y: null}, {x: 0.067547724, y: null}, {x: 0.103852596, y: null}, {x: 0.069990412, y: null}, {x: 0.052258636, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02688172, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040251572, y: null}, {x: 0.011220196, y: null}, {x: 0.047619048, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092213115, y: null}, {x: 0.045676998, y: null}, {x: 0.0, y: null}, {x: 0.019202363, y: null}, {x: 0.0, y: null}, {x: 0.078677309, y: null}, {x: 0.26446281, y: null}, {x: 0.086614173, y: null}, {x: 0.329113924, y: null}, {x: 0.012048193, y: null}, {x: 0.049535604, y: null}, {x: 0.036101083, y: null}, {x: 0.10786802, y: null}, {x: 0.029950083, y: null}, {x: 0.0, y: null}, {x: 0.019920319, y: null}, {x: 0.057471264, y: null}, {x: 0.015325671, y: null}, {x: 0.03514377, y: null}, {x: 0.020887728, y: null}, {x: 0.169642857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.078651685, y: null}, {x: 0.021403092, y: null}, {x: 0.017045455, y: null}, {x: 0.044834308, y: null}, {x: 0.0, y: null}, {x: 0.035087719, y: null}, {x: 0.025330396, y: null}, {x: 0.055162659, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076986755, y: null}, {x: 0.050847458, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012461059, y: null}, {x: 0.0, y: null}, {x: 0.120792079, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016320475, y: null}, {x: 0.011535049, y: null}, {x: 0.0, y: null}, {x: 0.065934066, y: null}, {x: 0.085981308, y: null}, {x: 0.0, y: null}, {x: 0.024705882, y: null}, {x: 0.0, y: null}, {x: 0.022288262, y: null}, {x: 0.037585421, y: null}, {x: 0.066066066, y: null}, {x: 0.011142061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.123493976, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076923077, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012787724, y: null}, {x: 0.113402062, y: null}, {x: 0.051212938, y: null}, {x: 0.0, y: null}, {x: 0.096491228, y: null}, {x: 0.0, y: null}, {x: 0.041580042, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033738192, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013875124, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.222222222, y: null}, {x: 0.0, y: null}, {x: 0.053497942, y: null}, {x: 0.147914033, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.152671756, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051807229, y: null}, {x: 0.046070461, y: null}, {x: 0.0, y: null}, {x: 0.027372263, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031858407, y: null}, {x: 0.10090703, y: null}, {x: 0.066539924, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004716981, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014705882, y: null}, {x: 0.040268456, y: null}, {x: 0.0, y: null}, {x: 0.031104199, y: null}, {x: 0.055393586, y: null}, {x: 0.011795544, y: null}, {x: 0.0, y: null}, {x: 0.016260163, y: null}, {x: 0.0, y: null}, {x: 0.048920863, y: null}, {x: 0.106598985, y: null}, {x: 0.0, y: null}, {x: 0.030816641, y: null}, {x: 0.0, y: null}, {x: 0.10741688, y: null}, {x: 0.030534351, y: null}, {x: 0.18579235, y: null}, {x: 0.0, y: null}, {x: 0.049360146, y: null}, {x: 0.111111111, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046511628, y: null}, {x: 0.04021164, y: null}, {x: 0.012509773, y: null}, {x: 0.05907173, y: null}, {x: 0.0, y: null}, {x: 0.03442029, y: null}, {x: 0.101449275, y: null}, {x: 0.0, y: null}, {x: 0.023376623, y: null}, {x: 0.095435685, y: null}, {x: 0.080675422, y: null}, {x: 0.084210526, y: null}, {x: 0.220689655, y: null}, {x: 0.348804501, y: null}, {x: 0.042168675, y: null}, {x: 0.0, y: null}, {x: 0.232876712, y: null}, {x: 0.053272451, y: null}, {x: 0.0, y: null}, {x: 0.093896714, y: null}, {x: 0.019296254, y: null}, {x: 0.0, y: null}, {x: 0.043010753, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095567867, y: null}, {x: 0.023391813, y: null}, {x: 0.0, y: null}, {x: 0.032906764, y: null}, {x: 0.0, y: null}, {x: 0.039130435, y: null}, {x: 0.076205288, y: null}, {x: 0.049327354, y: null}, {x: 0.0, y: null}, {x: 0.117647059, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054901961, y: null}, {x: 0.05615942, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017467249, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050458716, y: null}, {x: 0.0, y: null}, {x: 0.027444254, y: null}, {x: 0.0, y: null}, {x: 0.022160665, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071428571, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019011407, y: null}, {x: 0.025, y: null}, {x: 0.0, y: null}, {x: 0.166666667, y: null}, {x: 0.144970414, y: null}, {x: 0.045845272, y: null}, {x: 0.098924731, y: null}, {x: 0.108910891, y: null}, {x: 0.114035088, y: null}, {x: 0.051490515, y: null}, {x: 0.326424871, y: null}, {x: 0.294776119, y: null}, {x: 0.149925038, y: null}, {x: 0.081395349, y: null}, {x: 0.067741935, y: null}, {x: 0.112033195, y: null}, {x: 0.218018018, y: null}, {x: 0.067975831, y: null}, {x: 0.0, y: null}, {x: 0.03343949, y: null}, {x: 0.0, y: null}, {x: 0.475195823, y: null}, {x: 0.057086614, y: null}, {x: 0.152027027, y: null}, {x: 0.246753247, y: null}, {x: 0.17384106, y: null}, {x: 0.230476191, y: null}, {x: 0.251162791, y: null}, {x: 0.072635135, y: null}, {x: 0.0, y: null}, {x: 0.031553398, y: null}, {x: 0.341494845, y: null}, {x: 0.270457698, y: null}, {x: 0.0, y: null}, {x: 0.105633803, y: null}, {x: 0.206053551, y: null}, {x: 0.038461538, y: null}, {x: 0.120822622, y: null}, {x: 0.0, y: null}, {x: 0.243107769, y: null}, {x: 0.0, y: null}, {x: 0.12952381, y: null}, {x: 0.064088398, y: null}, {x: 0.07150368, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079777365, y: null}, {x: 0.0, y: null}, {x: 0.041728763, y: null}, {x: 0.172470978, y: null}, {x: 0.264750378, y: null}, {x: 0.048695652, y: null}, {x: 0.112474438, y: null}, {x: 0.069948187, y: null}, {x: 0.135638298, y: null}, {x: 0.160068847, y: null}, {x: 0.171641791, y: null}, {x: 0.138613861, y: null}, {x: 0.096563011, y: null}, {x: 0.099078341, y: null}, {x: 0.0, y: null}, {x: 0.054151625, y: null}, {x: 0.0, y: null}, {x: 0.132989025, y: null}, {x: 0.048959608, y: null}, {x: 0.036637931, y: null}, {x: 0.1625, y: null}, {x: 0.042139384, y: null}, {x: 0.178194607, y: null}, {x: 0.0, y: null}, {x: 0.053521127, y: null}, {x: 0.155993432, y: null}, {x: 0.031296572, y: null}, {x: 0.048433048, y: null}, {x: 0.088421053, y: null}, {x: 0.117424242, y: null}, {x: 0.023779725, y: null}, {x: 0.116257947, y: null}, {x: 0.115906289, y: null}, {x: 0.012, y: null}, {x: 0.0, y: null}, {x: 0.027355623, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057901086, y: null}, {x: 0.018575851, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.141906874, y: null}, {x: 0.110192838, y: null}, {x: 0.087096774, y: null}, {x: 0.034642032, y: null}, {x: 0.258064516, y: null}, {x: 0.0, y: null}, {x: 0.091234347, y: null}, {x: 0.0, y: null}, {x: 0.030487805, y: null}, {x: 0.04261796, y: null}, {x: 0.038076152, y: null}, {x: 0.035816619, y: null}, {x: 0.036247335, y: null}, {x: 0.044692737, y: null}, {x: 0.010498688, y: null}, {x: 0.0, y: null}, {x: 0.06284658, y: null}, {x: 0.011627907, y: null}, {x: 0.037414966, y: null}, {x: 0.146236559, y: null}, {x: 0.0, y: null}, {x: 0.154716981, y: null}, {x: 0.131113424, y: null}, {x: 0.053003534, y: null}, {x: 0.06505102, y: null}, {x: 0.114886731, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.096952909, y: null}, {x: 0.0, y: null}, {x: 0.075851393, y: null}, {x: 0.100358423, y: null}, {x: 0.0, y: null}, {x: 0.053892216, y: null}, {x: 0.161290323, y: null}, {x: 0.0, y: null}, {x: 0.07375, y: null}, {x: 0.153262519, y: null}, {x: 0.127979925, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022826087, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057915058, y: null}, {x: 0.278911565, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.118206522, y: null}, {x: 0.106382979, y: null}, {x: 0.0, y: null}, {x: 0.168449198, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.057361377, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044345898, y: null}, {x: 0.068807339, y: null}, {x: 0.104100946, y: null}, {x: 0.028894472, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040299906, y: null}, {x: 0.045296167, y: null}, {x: 0.088050314, y: null}, {x: 0.122807018, y: null}, {x: 0.021912351, y: null}, {x: 0.021235521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046920821, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.123036649, y: null}, {x: 0.0, y: null}, {x: 0.027480916, y: null}, {x: 0.054054054, y: null}, {x: 0.054794521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061403509, y: null}, {x: 0.07037037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.094117647, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01986755, y: null}, {x: 0.0, y: null}, {x: 0.026649746, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028416779, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076555024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.084415584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011574074, y: null}, {x: 0.03601108, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037558685, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037887486, y: null}, {x: 0.0, y: null}, {x: 0.049668874, y: null}, {x: 0.123870968, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026687598, y: null}, {x: 0.016977929, y: null}, {x: 0.175690608, y: null}, {x: 0.009400705, y: null}, {x: 0.253048781, y: null}, {x: 0.051136364, y: null}, {x: 0.095814978, y: null}, {x: 0.278873239, y: null}, {x: 0.045375218, y: null}, {x: 0.046768707, y: null}, {x: 0.032745592, y: null}, {x: 0.067375887, y: null}, {x: 0.035087719, y: null}, {x: 0.02994012, y: null}, {x: 0.010327022, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004123711, y: null}, {x: 0.132492114, y: null}, {x: 0.0, y: null}, {x: 0.09255079, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.09447983, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035483871, y: 3617.0713}, {x: 0.0, y: null}, {x: 0.013740458, y: null}, {x: 0.012113055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019047619, y: null}, {x: 0.0, y: null}, {x: 0.033898305, y: null}, {x: 0.0, y: null}, {x: 0.017897092, y: null}, {x: 0.0, y: null}, {x: 0.024506467, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05794948, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.116136919, y: null}, {x: 0.0, y: null}, {x: 0.03, y: 21.541675}, {x: 0.060377358, y: null}, {x: 0.0, y: null}, {x: 0.120287253, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066838046, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010650888, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009009009, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011308562, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.021042}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015625, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008849558, y: null}, {x: 0.013846154, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035874439, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.088291747, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085313175, y: null}, {x: 0.332382311, y: null}, {x: 0.288, y: null}, {x: 0.126984127, y: null}, {x: 0.193298969, y: null}, {x: 0.220338983, y: null}, {x: 0.24137931, y: null}, {x: 0.129554656, y: null}, {x: 0.04519774, y: null}, {x: 0.080174927, y: null}, {x: 0.130237826, y: null}, {x: 0.170426065, y: null}, {x: 0.007556675, y: null}, {x: 0.0, y: null}, {x: 0.300484653, y: null}, {x: 0.215256008, y: null}, {x: 0.238341969, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047945205, y: null}, {x: 0.266033254, y: null}, {x: 0.289398281, y: null}, {x: 0.0, y: null}, {x: 0.080944351, y: null}, {x: 0.177033493, y: null}, {x: 0.0, y: null}, {x: 0.429012346, y: null}, {x: 0.070840198, y: null}, {x: 0.0, y: null}, {x: 0.060100167, y: null}, {x: 0.422924901, y: null}, {x: 0.212475634, y: null}, {x: 0.117540687, y: null}, {x: 0.269293925, y: null}, {x: 0.048672566, y: null}, {x: 0.019067797, y: null}, {x: 0.0, y: null}, {x: 0.313656388, y: null}, {x: 0.0, y: null}, {x: 0.371323529, y: null}, {x: 0.055797733, y: null}, {x: 0.172248804, y: null}, {x: 0.06035503, y: null}, {x: 0.122340426, y: null}, {x: 0.0, y: null}, {x: 0.063444109, y: null}, {x: 0.106598985, y: null}, {x: 0.0, y: null}, {x: 0.135775862, y: null}, {x: 0.22614841, y: null}, {x: 0.228486647, y: null}, {x: 0.370283019, y: null}, {x: 0.145129225, y: null}, {x: 0.073170732, y: null}, {x: 0.091338583, y: null}, {x: 0.0, y: null}, {x: 0.095528455, y: null}, {x: 0.074148297, y: null}, {x: 0.266452649, y: null}, {x: 0.117647059, y: null}, {x: 0.0, y: null}, {x: 0.038732394, y: null}, {x: 0.0, y: null}, {x: 0.010570825, y: null}, {x: 0.061287028, y: null}, {x: 0.018544936, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050359712, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071593533, y: null}, {x: 0.012962963, y: null}, {x: 0.0, y: null}, {x: 0.010062893, y: null}, {x: 0.012302285, y: null}, {x: 0.03874092, y: null}, {x: 0.0, y: null}, {x: 0.011363636, y: null}, {x: 0.0, y: null}, {x: 0.047318612, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029593095, y: null}, {x: 0.0, y: null}, {x: 0.012121212, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112258065, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.120071685, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007430998, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009787928, y: null}, {x: 0.06185567, y: null}, {x: 0.048884166, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074725275, y: null}, {x: 0.239583333, y: null}, {x: 0.0, y: null}, {x: 0.039156627, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105747126, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112781955, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008536585, y: null}, {x: 0.017421603, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040322581, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020440252, y: null}, {x: 0.0, y: null}, {x: 0.005213764, y: null}, {x: 0.00952381, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010230179, y: null}, {x: 0.0, y: null}, {x: 0.043222004, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0609319, y: null}, {x: 0.0, y: null}, {x: 0.009195402, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032183908, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076759062, y: null}, {x: 0.0, y: null}, {x: 0.027807487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021398003, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024817518, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038709677, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103975535, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038906414, y: null}, {x: 0.049579046, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.157232704, y: null}, {x: 0.0, y: null}, {x: 0.062827225, y: null}, {x: 0.195652174, y: null}, {x: 0.184855234, y: null}, {x: 0.083129584, y: null}, {x: 0.216, y: null}, {x: 0.015981735, y: null}, {x: 0.0546875, y: null}, {x: 0.103535354, y: null}, {x: 0.153482881, y: null}, {x: 0.027237354, y: null}, {x: 0.0, y: null}, {x: 0.046728972, y: null}, {x: 0.155063291, y: null}, {x: 0.01369863, y: null}, {x: 0.084382872, y: null}, {x: 0.020430108, y: null}, {x: 0.041958042, y: null}, {x: 0.11308204, y: null}, {x: 0.588014981, y: null}, {x: 0.009708738, y: null}, {x: 0.0, y: null}, {x: 0.003676471, y: null}, {x: 0.038314176, y: null}, {x: 0.036842105, y: null}, {x: 0.119113573, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054830287, y: null}, {x: 0.0, y: null}, {x: 0.233128834, y: null}, {x: 0.047244094, y: null}, {x: 0.292753623, y: null}, {x: 0.050324675, y: null}, {x: 0.125, y: null}, {x: 0.039761431, y: null}, {x: 0.099644128, y: null}, {x: 0.087248322, y: null}, {x: 0.322807018, y: null}, {x: 0.11496063, y: null}, {x: 0.311764706, y: null}, {x: 0.183150183, y: null}, {x: 0.244117647, y: null}, {x: 0.0, y: null}, {x: 0.192755498, y: null}, {x: 0.082474227, y: null}, {x: 0.100737101, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.058956916, y: null}, {x: 0.348958333, y: null}, {x: 0.075441413, y: null}, {x: 0.0, y: null}, {x: 0.08477842, y: null}, {x: 0.227138643, y: null}, {x: 0.190789474, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.366438356, y: null}, {x: 0.0, y: null}, {x: 0.140350877, y: null}, {x: 0.0, y: null}, {x: 0.024017467, y: null}, {x: 0.215481172, y: null}, {x: 0.166666667, y: null}, {x: 0.046511628, y: null}, {x: 0.047619048, y: null}, {x: 0.155339806, y: null}, {x: 0.035063114, y: null}, {x: 0.106666667, y: null}, {x: 0.277056277, y: null}, {x: 0.066666667, y: null}, {x: 0.071225071, y: null}, {x: 0.215053763, y: null}, {x: 0.076923077, y: null}, {x: 0.218518519, y: null}, {x: 0.079925651, y: null}, {x: 0.095238095, y: null}, {x: 0.100719425, y: null}, {x: 0.136585366, y: null}, {x: 0.096491228, y: null}, {x: 0.082677165, y: null}, {x: 0.0, y: null}, {x: 0.180914513, y: null}, {x: 0.455882353, y: null}, {x: 0.054958184, y: null}, {x: 0.0, y: null}, {x: 0.524005487, y: null}, {x: 0.12585034, y: null}, {x: 0.044546851, y: null}, {x: 0.12605042, y: null}, {x: 0.200704225, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022058824, y: null}, {x: 0.021321962, y: null}, {x: 0.0, y: null}, {x: 0.04805915, y: null}, {x: 0.0, y: null}, {x: 0.039426523, y: null}, {x: 0.033033033, y: null}, {x: 0.012936611, y: null}, {x: 0.011730205, y: null}, {x: 0.026315789, y: null}, {x: 0.0, y: null}, {x: 0.052917232, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081946223, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075040783, y: null}, {x: 0.00929368, y: null}, {x: 0.014571949, y: null}, {x: 0.063157895, y: null}, {x: 0.164670659, y: null}, {x: 0.088704089, y: null}, {x: 0.053175775, y: null}, {x: 0.018691589, y: null}, {x: 0.096899225, y: null}, {x: 0.0, y: null}, {x: 0.016304348, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035060976, y: null}, {x: 0.313497823, y: null}, {x: 0.01625, y: null}, {x: 0.055727554, y: 7.2}, {x: 0.0, y: null}, {x: 0.069832402, y: null}, {x: 0.108433735, y: null}, {x: 0.0, y: null}, {x: 0.063670412, y: null}, {x: 0.0, y: null}, {x: 0.045731707, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085164835, y: null}, {x: 0.0, y: null}, {x: 0.087460485, y: null}, {x: 0.029255319, y: 766.04}, {x: 0.014018692, y: 273.784}, {x: 0.039759036, y: null}, {x: 0.215730337, y: null}, {x: 0.174846626, y: null}, {x: 0.012640449, y: 2.5375}, {x: 0.205521472, y: null}, {x: 0.272588055, y: 0.473}, {x: 0.145190563, y: null}, {x: 0.189300412, y: null}, {x: 0.224199288, y: null}, {x: 0.55450237, y: null}, {x: 0.463333333, y: null}, {x: 0.141868512, y: 3.82795}, {x: 0.176706827, y: null}, {x: 0.213136729, y: null}, {x: 0.035353535, y: null}, {x: 0.164821648, y: null}, {x: 0.216, y: null}, {x: 0.0, y: null}, {x: 0.418502203, y: null}, {x: 0.140718563, y: null}, {x: 0.43537415, y: null}, {x: 0.503802281, y: null}, {x: 0.573170732, y: null}, {x: 0.471204189, y: null}, {x: 0.189795918, y: null}, {x: 0.320474777, y: 0.17529}, {x: 0.229281768, y: null}, {x: 0.119469027, y: null}, {x: 0.040100251, y: null}, {x: 0.141369048, y: null}, {x: 0.2933213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.177142857, y: 16.942}, {x: 0.1369606, y: null}, {x: 0.067375887, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05108055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005714286, y: null}, {x: 0.0, y: null}, {x: 0.179425837, y: null}, {x: 0.56884058, y: null}, {x: 0.0, y: null}, {x: 0.060606061, y: null}, {x: 0.0, y: null}, {x: 0.06056338, y: null}, {x: 0.0, y: null}, {x: 0.037800687, y: null}, {x: 0.290657439, y: null}, {x: 0.192411924, y: null}, {x: 0.37615894, y: null}, {x: 0.02530253, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037795276, y: null}, {x: 0.566757493, y: null}, {x: 0.083860759, y: null}, {x: 0.0, y: null}, {x: 0.076595745, y: null}, {x: 0.050485437, y: null}, {x: 0.0, y: null}, {x: 0.196498055, y: null}, {x: 0.74744898, y: null}, {x: 0.116883117, y: null}, {x: 0.301576873, y: null}, {x: 0.675958188, y: null}, {x: 0.04, y: null}, {x: 0.0, y: null}, {x: 0.171021378, y: null}, {x: 0.100558659, y: null}, {x: 0.210382514, y: null}, {x: 0.019957983, y: 180.08110000000002}, {x: 0.49691358, y: null}, {x: 0.026455026, y: null}, {x: 0.118090452, y: null}, {x: 0.097520661, y: null}, {x: 0.540162122, y: null}, {x: 0.041176471, y: null}, {x: 0.0, y: null}, {x: 0.083823529, y: null}, {x: 0.012687428, y: null}, {x: 0.046511628, y: null}, {x: 0.113748764, y: null}, {x: 0.0, y: null}, {x: 0.466767372, y: null}, {x: 0.171962617, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029929577, y: null}, {x: 0.25, y: null}, {x: 0.04719764, y: null}, {x: 0.044481054, y: null}, {x: 0.161931818, y: null}, {x: 0.0, y: null}, {x: 0.29318542, y: null}, {x: 0.2325, y: null}, {x: 0.142394822, y: null}, {x: 0.131578947, y: null}, {x: 0.086743044, y: null}, {x: 0.011644833, y: null}, {x: 0.331220285, y: null}, {x: 0.059160305, y: null}, {x: 0.233502538, y: null}, {x: 0.255369928, y: null}, {x: 0.144144144, y: null}, {x: 0.104477612, y: null}, {x: 0.236607143, y: null}, {x: 0.131241084, y: null}, {x: 0.043969849, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.340384615, y: null}, {x: 0.386255924, y: null}, {x: 0.163865546, y: null}, {x: 0.206557377, y: null}, {x: 0.131386861, y: null}, {x: 0.126684636, y: null}, {x: 0.249391728, y: null}, {x: 0.175675676, y: null}, {x: 0.158950617, y: null}, {x: 0.229437229, y: null}, {x: 0.541666667, y: null}, {x: 0.378411911, y: null}, {x: 0.285217391, y: null}, {x: 0.323049002, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.140350877, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.094098884, y: null}, {x: 0.116352201, y: null}, {x: 0.289244186, y: null}, {x: 0.0, y: null}, {x: 0.14159292, y: null}, {x: 0.0, y: null}, {x: 0.286956522, y: null}, {x: 0.240150094, y: null}, {x: 0.115671642, y: null}, {x: 0.0, y: null}, {x: 0.18, y: null}, {x: 0.162337662, y: null}, {x: 0.159041394, y: null}, {x: 0.053380783, y: null}, {x: 0.138211382, y: null}, {x: 0.413612565, y: null}, {x: 0.438155136, y: null}, {x: 0.165277778, y: null}, {x: 0.170658683, y: null}, {x: 0.195171026, y: null}, {x: 0.257053292, y: null}, {x: 0.215328467, y: null}, {x: 0.157503715, y: null}, {x: 0.133640553, y: null}, {x: 0.271889401, y: null}, {x: 0.316666667, y: null}, {x: 0.14159292, y: null}, {x: 0.456395349, y: null}, {x: 0.381374723, y: null}, {x: 0.070121951, y: null}, {x: 0.0, y: null}, {x: 0.25389755, y: null}, {x: 0.0, y: null}, {x: 0.193548387, y: null}, {x: 0.236151604, y: null}, {x: 0.355179704, y: null}, {x: 0.0, y: null}, {x: 0.230633803, y: null}, {x: 0.180124224, y: null}, {x: 0.206812652, y: null}, {x: 0.298600311, y: null}, {x: 0.144117647, y: null}, {x: 0.395759717, y: null}, {x: 0.119617225, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.101426307, y: null}, {x: 0.092105263, y: null}, {x: 0.111553785, y: null}, {x: 0.073076923, y: null}, {x: 0.282208589, y: null}, {x: 0.216981132, y: null}, {x: 0.06779661, y: null}, {x: 0.0, y: null}, {x: 0.206278027, y: null}, {x: 0.092140921, y: null}, {x: 0.161564626, y: null}, {x: 0.123827392, y: null}, {x: 0.145631068, y: null}, {x: 0.223988439, y: null}, {x: 0.162561576, y: null}, {x: 0.199329983, y: null}, {x: 0.179104478, y: null}, {x: 0.387387387, y: null}, {x: 0.089668616, y: null}, {x: 0.183391004, y: null}, {x: 0.124401914, y: null}, {x: 0.062937063, y: null}, {x: 0.283950617, y: null}, {x: 0.172680412, y: null}, {x: 0.125, y: null}, {x: 0.108870968, y: null}, {x: 0.11732852, y: null}, {x: 0.180722892, y: null}, {x: 0.214285714, y: null}, {x: 0.091036415, y: null}, {x: 0.0, y: null}, {x: 0.096463023, y: null}, {x: 0.408571429, y: null}, {x: 0.313782991, y: null}, {x: 0.0, y: null}, {x: 0.248366013, y: null}, {x: 0.084269663, y: null}, {x: 0.09556314, y: null}, {x: 0.035019455, y: null}, {x: 0.089506173, y: null}, {x: 0.198275862, y: null}, {x: 0.070987654, y: null}, {x: 0.171717172, y: null}, {x: 0.086206897, y: null}, {x: 0.418604651, y: null}, {x: 0.15625, y: null}, {x: 0.0, y: null}, {x: 0.116045845, y: null}, {x: 0.237639553, y: null}, {x: 0.20295203, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.181578947, y: null}, {x: 0.079584775, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.125412541, y: null}, {x: 0.187203792, y: null}, {x: 0.0, y: null}, {x: 0.071269488, y: null}, {x: 0.051330798, y: null}, {x: 0.0, y: null}, {x: 0.05915493, y: null}, {x: 0.09939759, y: null}, {x: 0.003169572, y: null}, {x: 0.100263852, y: null}, {x: 0.037523452, y: null}, {x: 0.0486618, y: null}, {x: 0.096732026, y: null}, {x: 0.0, y: null}, {x: 0.418972332, y: null}, {x: 0.210526316, y: null}, {x: 0.233905579, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.106765328, y: null}, {x: 0.024, y: null}, {x: 0.02293578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.097560976, y: null}, {x: 0.0, y: null}, {x: 0.101321586, y: null}, {x: 0.099667774, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.053050398, y: null}, {x: 0.191082803, y: null}, {x: 0.039735099, y: null}, {x: 0.090128755, y: null}, {x: 0.02278481, y: null}, {x: 0.074542897, y: null}, {x: 0.06097561, y: null}, {x: 0.173285199, y: null}, {x: 0.262806236, y: null}, {x: 0.10755814, y: null}, {x: 0.085526316, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065217391, y: null}, {x: 0.007856341, y: null}, {x: 0.034210526, y: null}, {x: 0.02862254, y: null}, {x: 0.104972376, y: null}, {x: 0.284810127, y: null}, {x: 0.111328125, y: null}, {x: 0.0, y: null}, {x: 0.103896104, y: null}, {x: 0.117647059, y: null}, {x: 0.258293839, y: null}, {x: 0.0, y: null}, {x: 0.082089552, y: null}, {x: 0.0, y: null}, {x: 0.133832976, y: null}, {x: 0.099502488, y: null}, {x: 0.078125, y: null}, {x: 0.208613728, y: null}, {x: 0.034139403, y: null}, {x: 0.209302326, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033259424, y: null}, {x: 0.114143921, y: null}, {x: 0.040229885, y: null}, {x: 0.037914692, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071017274, y: null}, {x: 0.247863248, y: null}, {x: 0.007494647, y: null}, {x: 0.045553145, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036474164, y: null}, {x: 0.0, y: null}, {x: 0.016415869, y: null}, {x: 0.051440329, y: null}, {x: 0.040584416, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112612613, y: null}, {x: 0.112938597, y: null}, {x: 0.037344398, y: null}, {x: 0.076923077, y: null}, {x: 0.089430894, y: null}, {x: 0.179442509, y: null}, {x: 0.04845815, y: null}, {x: 0.0, y: null}, {x: 0.041284404, y: null}, {x: 0.0, y: null}, {x: 0.045034642, y: null}, {x: 0.099354839, y: null}, {x: 0.11550152, y: null}, {x: 0.470588235, y: null}, {x: 0.227848101, y: null}, {x: 0.023148148, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044155844, y: null}, {x: 0.012797075, y: null}, {x: 0.04199773, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.164516129, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.09939759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054347826, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.077669903, y: null}, {x: 0.0, y: null}, {x: 0.044354839, y: null}, {x: 0.112200436, y: null}, {x: 0.078373016, y: null}, {x: 0.043715847, y: null}, {x: 0.298208641, y: null}, {x: 0.201336675, y: null}, {x: 0.161764706, y: null}, {x: 0.105263158, y: null}, {x: 0.092764378, y: null}, {x: 0.096256684, y: null}, {x: 0.034632035, y: null}, {x: 0.078104994, y: null}, {x: 0.109057301, y: null}, {x: 0.132867133, y: null}, {x: 0.367412141, y: null}, {x: 0.268792711, y: null}, {x: 0.081632653, y: null}, {x: 0.259414226, y: null}, {x: 0.0, y: null}, {x: 0.089506173, y: null}, {x: 0.056862745, y: null}, {x: 0.203333333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.183673469, y: null}, {x: 0.219512195, y: null}, {x: 0.133333333, y: null}, {x: 0.0, y: null}, {x: 0.181657848, y: null}, {x: 0.49602122, y: null}, {x: 0.128342246, y: null}, {x: 0.0, y: null}, {x: 0.232835821, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.301675978, y: null}, {x: 0.097130243, y: null}, {x: 0.453453454, y: null}, {x: 0.250909091, y: null}, {x: 0.160997732, y: null}, {x: 0.0, y: null}, {x: 0.412742382, y: null}, {x: 0.75088968, y: null}, {x: 0.18852459, y: null}, {x: 0.202898551, y: null}, {x: 0.566395664, y: null}, {x: 0.637873754, y: null}, {x: 0.433198381, y: null}, {x: 0.144200627, y: null}, {x: 0.078616352, y: null}, {x: 0.183229814, y: 0.028}, {x: 0.372307692, y: null}, {x: 0.519685039, y: null}, {x: 0.060362173, y: null}, {x: 0.22737819, y: null}, {x: 0.090019569, y: null}, {x: 0.159574468, y: null}, {x: 0.128125, y: null}, {x: 0.593291405, y: null}, {x: 0.0, y: null}, {x: 0.383900929, y: null}, {x: 0.0, y: 1.660842}, {x: 0.133333333, y: null}, {x: 0.29390681, y: null}, {x: 0.133479212, y: null}, {x: 0.0, y: null}, {x: 0.232857143, y: null}, {x: 0.214776632, y: null}, {x: 0.283333333, y: null}, {x: 0.264344262, y: null}, {x: 0.0, y: null}, {x: 0.216763006, y: null}, {x: 0.589403974, y: null}, {x: 0.093333333, y: null}, {x: 0.208609272, y: null}, {x: 0.114379085, y: null}, {x: 0.072131148, y: null}, {x: 0.199084668, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.215217391, y: null}, {x: 0.007587253, y: null}, {x: 0.114398422, y: null}, {x: 0.231454006, y: null}, {x: 0.094117647, y: null}, {x: 0.0, y: null}, {x: 0.058084772, y: null}, {x: 0.023648649, y: null}, {x: 0.0, y: null}, {x: 0.082429501, y: null}, {x: 0.26443769, y: null}, {x: 0.182795699, y: null}, {x: 0.046391753, y: null}, {x: 0.147001934, y: null}, {x: 0.394495413, y: null}, {x: 0.307086614, y: null}, {x: 0.161228407, y: null}, {x: 0.129844961, y: null}, {x: 0.145721925, y: null}, {x: 0.0, y: null}, {x: 0.053701016, y: null}, {x: 0.220838052, y: null}, {x: 0.028795812, y: null}, {x: 0.252155172, y: null}, {x: 0.075975359, y: null}, {x: 0.109589041, y: null}, {x: 0.178640777, y: null}, {x: 0.04691358, y: null}, {x: 0.194503171, y: null}, {x: 0.224598931, y: null}, {x: 0.229090909, y: null}, {x: 0.190082645, y: null}, {x: 0.351239669, y: null}, {x: 0.378026071, y: null}, {x: 0.271948608, y: null}, {x: 0.175088132, y: null}, {x: 0.175308642, y: null}, {x: 0.112462006, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.106888361, y: null}, {x: 0.051460362, y: null}, {x: 0.0, y: null}, {x: 0.027972028, y: null}, {x: 0.0, y: null}, {x: 0.013452915, y: null}, {x: 0.0, y: null}, {x: 0.029239766, y: null}, {x: 0.034220532, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036977492, y: null}, {x: 0.0, y: null}, {x: 0.03006012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.444444444, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028391167, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014173228, y: null}, {x: 0.020361991, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011375388, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.067641682, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007476636, y: null}, {x: 0.0, y: null}, {x: 0.045897079, y: null}, {x: 0.008547009, y: null}, {x: 0.0, y: null}, {x: 0.049751244, y: null}, {x: 0.019163763, y: null}, {x: 0.027027027, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028795812, y: null}, {x: 0.019347037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04109589, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029865125, y: null}, {x: 0.039246468, y: null}, {x: 0.0, y: null}, {x: 0.077017115, y: null}, {x: 0.481404959, y: null}, {x: 0.112956811, y: null}, {x: 0.068432671, y: null}, {x: 0.0, y: null}, {x: 0.189269747, y: null}, {x: 0.0, y: null}, {x: 0.591478697, y: null}, {x: 0.038554217, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025666338, y: null}, {x: 0.124567474, y: 626.415468}, {x: 0.112970711, y: null}, {x: 0.120171674, y: null}, {x: 0.145454546, y: null}, {x: 0.084291188, y: null}, {x: 0.064, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010869565, y: null}, {x: 0.026548673, y: null}, {x: 0.086065574, y: null}, {x: 0.0, y: 0.316}, {x: 0.0, y: 13.296268}, {x: 0.0, y: null}, {x: 0.028199566, y: null}, {x: 0.055374593, y: null}, {x: 0.458823529, y: null}, {x: 0.030237581, y: 0.22}, {x: 0.0, y: null}, {x: 0.094435076, y: null}, {x: 0.014040562, y: 0.171}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071258907, y: null}, {x: 0.02134647, y: null}, {x: 0.0, y: null}, {x: 0.194202899, y: null}, {x: 0.0, y: null}, {x: 0.051649928, y: null}, {x: 0.122362869, y: null}, {x: 0.02295082, y: null}, {x: 0.23, y: null}, {x: 0.16, y: 9.505065}, {x: 0.078651685, y: null}, {x: 0.050916497, y: null}, {x: 0.035164835, y: 3.291023}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105839416, y: null}, {x: 0.03030303, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024413146, y: null}, {x: 0.018595041, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013513514, y: null}, {x: 0.015209125, y: null}, {x: 0.123809524, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089570552, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019762846, y: null}, {x: 0.0, y: null}, {x: 0.112195122, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024781341, y: null}, {x: 0.0375, y: null}, {x: 0.092857143, y: null}, {x: 0.01578354, y: null}, {x: 0.095918367, y: null}, {x: 0.007627765, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030701754, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.016676}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.003921569, y: null}, {x: 0.0, y: null}, {x: 0.008498584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008403361, y: null}, {x: 0.006802721, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028135991, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105173876, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.177777778, y: null}, {x: 0.359307359, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.048231511, y: null}, {x: 0.088807786, y: null}, {x: 0.041450777, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.143835616, y: null}, {x: 0.092457421, y: null}, {x: 0.122235157, y: null}, {x: 0.038918919, y: null}, {x: 0.02425876, y: null}, {x: 0.12244898, y: null}, {x: 0.0, y: null}, {x: 0.253937008, y: null}, {x: 0.029689609, y: null}, {x: 0.059958649, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030712531, y: null}, {x: 0.017021277, y: null}, {x: 0.137542277, y: null}, {x: 0.027863777, y: null}, {x: 0.118811881, y: null}, {x: 0.06932409, y: null}, {x: 0.0, y: null}, {x: 0.150093809, y: null}, {x: 0.075682382, y: null}, {x: 0.0, y: null}, {x: 0.096491228, y: null}, {x: 0.0, y: null}, {x: 0.099018733, y: null}, {x: 0.038116592, y: null}, {x: 0.025020178, y: null}, {x: 0.128400435, y: null}, {x: 0.0, y: null}, {x: 0.53271028, y: null}, {x: 0.0, y: null}, {x: 0.028052805, y: null}, {x: 0.097883598, y: null}, {x: 0.0, y: null}, {x: 0.125899281, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.174220963, y: null}, {x: 0.095238095, y: null}, {x: 0.256670902, y: null}, {x: 0.0, y: null}, {x: 0.105263158, y: null}, {x: 0.101351351, y: null}, {x: 0.141706924, y: null}, {x: 0.323770492, y: null}, {x: 0.346551724, y: null}, {x: 0.194928685, y: null}, {x: 0.445229682, y: null}, {x: 0.081318681, y: null}, {x: 0.046808511, y: null}, {x: 0.118556701, y: null}, {x: 0.185863874, y: null}, {x: 0.196213425, y: null}, {x: 0.02027027, y: null}, {x: 0.258953168, y: null}, {x: 0.169786096, y: null}, {x: 0.126153846, y: null}, {x: 0.070362473, y: null}, {x: 0.315088757, y: null}, {x: 0.0, y: null}, {x: 0.252525253, y: null}, {x: 0.0, y: null}, {x: 0.230263158, y: null}, {x: 0.222531294, y: null}, {x: 0.199170125, y: null}, {x: 0.104761905, y: null}, {x: 0.0, y: null}, {x: 0.316042267, y: null}, {x: 0.327102804, y: null}, {x: 0.411851852, y: null}, {x: 0.172413793, y: null}, {x: 0.48, y: null}, {x: 0.126373626, y: null}, {x: 0.147347741, y: null}, {x: 0.103448276, y: null}, {x: 0.176470588, y: null}, {x: 0.386861314, y: null}, {x: 0.14354067, y: null}, {x: 0.174231332, y: null}, {x: 0.101405623, y: null}, {x: 0.0, y: null}, {x: 0.15719697, y: null}, {x: 0.111757858, y: null}, {x: 0.152119701, y: null}, {x: 0.098928277, y: null}, {x: 0.311708861, y: null}, {x: 0.336426914, y: null}, {x: 0.0, y: null}, {x: 0.169291339, y: null}, {x: 0.041369472, y: null}, {x: 0.120200334, y: null}, {x: 0.21, y: null}, {x: 0.116071429, y: null}, {x: 0.127298444, y: null}, {x: 0.556962025, y: null}, {x: 0.251833741, y: null}, {x: 0.423387097, y: null}, {x: 0.1125, y: null}, {x: 0.106280193, y: 563.320881}, {x: 0.148314607, y: null}, {x: 0.405336722, y: null}, {x: 0.140877598, y: null}, {x: 0.0, y: null}, {x: 0.03125, y: null}, {x: 0.531598513, y: null}, {x: 0.114285714, y: null}, {x: 0.023904382, y: null}, {x: 0.107798165, y: null}, {x: 0.022058824, y: null}, {x: 0.021541011, y: null}, {x: 0.087391594, y: null}, {x: 0.065530799, y: null}, {x: 0.094619666, y: null}, {x: 0.113445378, y: null}, {x: 0.0, y: null}, {x: 0.081245768, y: null}, {x: 0.181818182, y: null}, {x: 0.057591623, y: null}, {x: 0.259656652, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085616438, y: null}, {x: 0.117537313, y: null}, {x: 0.063909774, y: null}, {x: 0.0, y: null}, {x: 0.083094556, y: null}, {x: 0.079925651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021398003, y: null}, {x: 0.058823529, y: null}, {x: 0.001589825, y: null}, {x: 0.015021459, y: null}, {x: 0.072829132, y: null}, {x: 0.008278146, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02173913, y: null}, {x: 0.018796992, y: null}, {x: 0.0, y: null}, {x: 0.057208238, y: null}, {x: 0.153658537, y: null}, {x: 0.0, y: null}, {x: 0.067982456, y: 58.2}, {x: 0.011173184, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076923077, y: null}, {x: 0.013651877, y: null}, {x: 0.027472527, y: null}, {x: 0.050505051, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065408805, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018099548, y: null}, {x: 0.0, y: null}, {x: 0.129645635, y: null}, {x: 0.049865229, y: null}, {x: 0.24784217, y: null}, {x: 0.023923445, y: null}, {x: 0.137931035, y: null}, {x: 0.0, y: null}, {x: 0.020190024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050632911, y: null}, {x: 0.021390374, y: null}, {x: 0.0, y: null}, {x: 0.066458982, y: null}, {x: 0.0, y: null}, {x: 0.008976661, y: null}, {x: 0.0, y: null}, {x: 0.043737575, y: null}, {x: 0.019736842, y: null}, {x: 0.0, y: null}, {x: 0.019157088, y: null}, {x: 0.074367089, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019031142, y: null}, {x: 0.0, y: null}, {x: 0.032258065, y: null}, {x: 0.025510204, y: null}, {x: 0.0, y: null}, {x: 0.024647887, y: null}, {x: 0.095389507, y: null}, {x: 0.030075188, y: null}, {x: 0.016666667, y: null}, {x: 0.031553398, y: null}, {x: 0.094545455, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023255814, y: null}, {x: 0.119815668, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01615074, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01372549, y: null}, {x: 0.108287293, y: null}, {x: 0.0, y: null}, {x: 0.078461538, y: null}, {x: 0.0, y: null}, {x: 0.014005602, y: null}, {x: 0.17826087, y: null}, {x: 0.13961039, y: null}, {x: 0.25058548, y: null}, {x: 0.04375, y: null}, {x: 0.054992764, y: null}, {x: 0.243421053, y: null}, {x: 0.307692308, y: null}, {x: 0.271293375, y: null}, {x: 0.046025105, y: null}, {x: 0.020689655, y: null}, {x: 0.092173913, y: null}, {x: 0.229166667, y: null}, {x: 0.0, y: null}, {x: 0.021238938, y: null}, {x: 0.011477762, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035490605, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026627219, y: null}, {x: 0.0, y: null}, {x: 0.034271726, y: null}, {x: 0.014223195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01124498, y: null}, {x: 0.0, y: null}, {x: 0.018181818, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033628319, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02003643, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040723982, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030241935, y: null}, {x: 0.110444178, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028145695, y: null}, {x: 0.0, y: null}, {x: 0.01590106, y: null}, {x: 0.079399142, y: null}, {x: 0.056451613, y: null}, {x: 0.065075922, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005031447, y: null}, {x: 0.027315914, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043604651, y: null}, {x: 0.044705882, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012578616, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074786325, y: null}, {x: 0.034205231, y: null}, {x: 0.048214286, y: null}, {x: 0.0, y: null}, {x: 0.218430034, y: null}, {x: 0.22519084, y: null}, {x: 0.066137566, y: null}, {x: 0.1, y: null}, {x: 0.233022637, y: null}, {x: 0.023648649, y: null}, {x: 0.111111111, y: null}, {x: 0.093587522, y: null}, {x: 0.058238636, y: null}, {x: 0.041860465, y: null}, {x: 0.022271715, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022813688, y: null}, {x: 0.0, y: null}, {x: 0.054140127, y: null}, {x: 0.014858841, y: null}, {x: 0.005988024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039242219, y: null}, {x: 0.150669643, y: null}, {x: 0.082822086, y: null}, {x: 0.04851752, y: null}, {x: 0.0, y: null}, {x: 0.024856597, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.00759173475, y: 53.56943746493412}, {x: 0.04882884825, y: 263.7912652067177}, {x: 0.5412371135, y: 118.8460769786776}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.00759173475, y: -20.30326772678277}, {x: 0.04882884825, y: 75.48763855961266}, {x: 0.5412371135, y: 73.94141057104807}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.00759173475, y: 127.44214265665101}, {x: 0.04882884825, y: 452.09489185382273}, {x: 0.5412371135, y: 163.75074338630714}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LOWINCPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LOWINCPCT.html index d89d8743..c35abbf6 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LOWINCPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LOWINCPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.225365854, y: null}, {x: 0.157170923, y: null}, {x: 0.292569659, y: null}, {x: 0.355932203, y: null}, {x: 0.331747919, y: null}, {x: 0.195612431, y: null}, {x: 0.421416235, y: null}, {x: 0.087596356, y: null}, {x: 0.246537396, y: null}, {x: 0.090909091, y: null}, {x: 0.233269599, y: null}, {x: 0.139484979, y: null}, {x: 0.086071987, y: null}, {x: 0.066143498, y: null}, {x: 0.247483222, y: null}, {x: 0.205073996, y: null}, {x: 0.118927973, y: null}, {x: 0.180357143, y: null}, {x: 0.40131579, y: null}, {x: 0.452808989, y: null}, {x: 0.060307018, y: null}, {x: 0.151642208, y: null}, {x: 0.037537538, y: 0.093729}, {x: 0.147126437, y: null}, {x: 0.11827957, y: null}, {x: 0.054669704, y: null}, {x: 0.382763975, y: null}, {x: 0.035135135, y: null}, {x: 0.013349515, y: null}, {x: 0.029652352, y: null}, {x: 0.194623656, y: null}, {x: 0.372727273, y: null}, {x: 0.221893491, y: null}, {x: 0.144, y: null}, {x: 0.03452381, y: null}, {x: 0.467171717, y: null}, {x: 0.153678711, y: null}, {x: 0.053731343, y: null}, {x: 0.08716707, y: null}, {x: 0.343377716, y: null}, {x: 0.079958463, y: null}, {x: 0.197693575, y: null}, {x: 0.078787879, y: null}, {x: 0.108029197, y: null}, {x: 0.220935043, y: null}, {x: 0.17695962, y: null}, {x: 0.1484375, y: null}, {x: 0.104990584, y: null}, {x: 0.365819209, y: null}, {x: 0.157706093, y: null}, {x: 0.201189296, y: null}, {x: 0.193396226, y: null}, {x: 0.215859031, y: null}, {x: 0.209302326, y: null}, {x: 0.138307552, y: null}, {x: 0.084931507, y: null}, {x: 0.163904236, y: null}, {x: 0.094619666, y: null}, {x: 0.328301887, y: null}, {x: 0.284076433, y: null}, {x: 0.236363636, y: null}, {x: 0.126789366, y: null}, {x: 0.039622642, y: null}, {x: 0.195773081, y: null}, {x: 0.282835821, y: null}, {x: 0.397154713, y: null}, {x: 0.359016393, y: null}, {x: 0.159090909, y: null}, {x: 0.204285714, y: null}, {x: 0.097014925, y: null}, {x: 0.247560976, y: null}, {x: 0.115187087, y: null}, {x: 0.147157191, y: null}, {x: 0.122807018, y: null}, {x: 0.275761974, y: null}, {x: 0.041497152, y: null}, {x: 0.233900052, y: null}, {x: 0.196217494, y: null}, {x: 0.127208481, y: null}, {x: 0.027994792, y: null}, {x: 0.050189394, y: null}, {x: 0.29454171, y: null}, {x: 0.238773275, y: null}, {x: 0.280051151, y: null}, {x: 0.09030837, y: null}, {x: 0.296663661, y: null}, {x: 0.261219793, y: null}, {x: 0.401098901, y: null}, {x: 0.088806661, y: null}, {x: 0.472783826, y: null}, {x: 0.123818526, y: null}, {x: 0.492088608, y: null}, {x: 0.13091922, y: null}, {x: 0.040025016, y: null}, {x: 0.010574018, y: null}, {x: 0.093610698, y: null}, {x: 0.0, y: null}, {x: 0.022082019, y: null}, {x: 0.594444444, y: null}, {x: 0.163619744, y: null}, {x: 0.426900585, y: null}, {x: 0.230932203, y: null}, {x: 0.159406858, y: null}, {x: 0.271081221, y: null}, {x: 0.510526316, y: null}, {x: 0.184037559, y: null}, {x: 0.406756757, y: null}, {x: 0.178927681, y: null}, {x: 0.11741683, y: null}, {x: 0.03526971, y: null}, {x: 0.099724897, y: null}, {x: 0.114718615, y: null}, {x: 0.115099715, y: null}, {x: 0.128979144, y: null}, {x: 0.13, y: null}, {x: 0.125295508, y: null}, {x: 0.100821168, y: null}, {x: 0.175257732, y: null}, {x: 0.191208791, y: null}, {x: 0.089236431, y: null}, {x: 0.053469852, y: null}, {x: 0.097664544, y: null}, {x: 0.232054691, y: null}, {x: 0.082802548, y: null}, {x: 0.01540957, y: null}, {x: 0.172268908, y: null}, {x: 0.069911163, y: null}, {x: 0.074749316, y: null}, {x: 0.204968944, y: null}, {x: 0.096666667, y: null}, {x: 0.147651007, y: null}, {x: 0.14691358, y: null}, {x: 0.084097859, y: null}, {x: 0.08173913, y: null}, {x: 0.301909308, y: null}, {x: 0.045045045, y: null}, {x: 0.132592593, y: null}, {x: 0.061993517, y: null}, {x: 0.073134328, y: null}, {x: 0.227629513, y: null}, {x: 0.125977411, y: null}, {x: 0.0, y: null}, {x: 0.193959732, y: null}, {x: 0.120923913, y: null}, {x: 0.190682557, y: null}, {x: 0.089411765, y: null}, {x: 0.11621455, y: null}, {x: 0.192153723, y: null}, {x: 0.087619048, y: null}, {x: 0.260299626, y: null}, {x: 0.261904762, y: null}, {x: 0.113636364, y: null}, {x: 0.212952799, y: null}, {x: 0.05985267, y: null}, {x: 0.138266797, y: null}, {x: 0.279229711, y: null}, {x: 0.246469833, y: null}, {x: 0.505128205, y: null}, {x: 0.067010309, y: null}, {x: 0.122282609, y: null}, {x: 0.198312236, y: null}, {x: 0.041726619, y: null}, {x: 0.021920668, y: null}, {x: 0.121571838, y: null}, {x: 0.06147968, y: null}, {x: 0.199362042, y: null}, {x: 0.042465753, y: null}, {x: 0.142639787, y: null}, {x: 0.407854985, y: null}, {x: 0.239823982, y: null}, {x: 0.317391304, y: null}, {x: 0.1872, y: null}, {x: 0.076923077, y: null}, {x: 0.141566265, y: null}, {x: 0.285367825, y: null}, {x: 0.203596288, y: null}, {x: 0.442902882, y: null}, {x: 0.136732329, y: null}, {x: 0.451802179, y: null}, {x: 0.25140713, y: null}, {x: 0.063268893, y: null}, {x: 0.078085642, y: null}, {x: 0.185135135, y: null}, {x: 0.10451505, y: null}, {x: 0.209565217, y: null}, {x: 0.100446429, y: null}, {x: 0.308504035, y: null}, {x: 0.308474576, y: null}, {x: 0.189907039, y: null}, {x: 0.150778816, y: null}, {x: 0.105535055, y: null}, {x: 0.122593718, y: null}, {x: 0.449620802, y: null}, {x: 0.49765747, y: null}, {x: 0.372031662, y: null}, {x: 0.0, y: null}, {x: 0.738191633, y: null}, {x: 0.471971067, y: null}, {x: 0.579825835, y: null}, {x: 0.747445256, y: null}, {x: 0.251798561, y: null}, {x: 0.481848185, y: null}, {x: 0.631306598, y: null}, {x: 0.440744368, y: null}, {x: 0.373697917, y: null}, {x: 0.323797139, y: null}, {x: 0.170967742, y: null}, {x: 0.331770223, y: null}, {x: 0.283076923, y: null}, {x: 0.583864119, y: null}, {x: 0.048957389, y: null}, {x: 0.188175461, y: null}, {x: 0.097744361, y: null}, {x: 0.178166838, y: null}, {x: 0.149159664, y: null}, {x: 0.602666667, y: null}, {x: 0.645833333, y: null}, {x: 0.679802956, y: null}, {x: 0.493530499, y: null}, {x: 0.539249147, y: null}, {x: 0.085648148, y: null}, {x: 0.245960503, y: null}, {x: 0.092699884, y: null}, {x: 0.029388403, y: null}, {x: 0.101694915, y: null}, {x: 0.108744395, y: null}, {x: 0.185616438, y: null}, {x: 0.0, y: null}, {x: 0.3125, y: null}, {x: 0.626851852, y: null}, {x: 0.405633803, y: null}, {x: 0.086572438, y: null}, {x: 0.178030303, y: null}, {x: 0.080765143, y: null}, {x: 0.103703704, y: null}, {x: 0.40327294, y: null}, {x: 0.158713693, y: null}, {x: 0.194915254, y: null}, {x: 0.237885463, y: null}, {x: 0.181443299, y: null}, {x: 0.170940171, y: null}, {x: 0.454320988, y: null}, {x: 0.214015152, y: null}, {x: 0.0546875, y: null}, {x: 0.242740134, y: null}, {x: 0.055469954, y: null}, {x: 0.153707052, y: null}, {x: 0.162576687, y: null}, {x: 0.134762634, y: null}, {x: 0.212301587, y: null}, {x: 0.167852063, y: null}, {x: 0.303030303, y: null}, {x: 0.019690577, y: 0.175}, {x: 0.06601467, y: null}, {x: 0.150295858, y: null}, {x: 0.385103011, y: null}, {x: 0.055828221, y: null}, {x: 0.180851064, y: null}, {x: 0.524421594, y: null}, {x: 0.123439667, y: null}, {x: 0.134693878, y: null}, {x: 0.174712644, y: null}, {x: 0.099078341, y: null}, {x: 0.066597294, y: null}, {x: 0.247953216, y: null}, {x: 0.20527307, y: null}, {x: 0.459850107, y: null}, {x: 0.484200744, y: null}, {x: 0.575488455, y: null}, {x: 0.187830688, y: null}, {x: 0.208279431, y: null}, {x: 0.296466974, y: null}, {x: 0.086743044, y: null}, {x: 0.52919708, y: null}, {x: 0.397333333, y: null}, {x: 0.390563565, y: null}, {x: 0.386637459, y: null}, {x: 0.341246291, y: null}, {x: 0.357712766, y: null}, {x: 0.184601925, y: null}, {x: 0.132368149, y: null}, {x: 0.127481714, y: null}, {x: 0.13570887, y: null}, {x: 0.177257525, y: null}, {x: 0.527486911, y: null}, {x: 0.153652393, y: null}, {x: 0.204365079, y: null}, {x: 0.130850048, y: null}, {x: 0.144062297, y: null}, {x: 0.170068027, y: null}, {x: 0.189591078, y: null}, {x: 0.361147327, y: null}, {x: 0.241765943, y: null}, {x: 0.151111111, y: null}, {x: 0.236786469, y: null}, {x: 0.120124805, y: null}, {x: 0.067915691, y: null}, {x: 0.204896907, y: null}, {x: 0.155991736, y: null}, {x: 0.19140625, y: null}, {x: 0.263908702, y: null}, {x: 0.108739837, y: null}, {x: 0.102564103, y: null}, {x: 0.147704591, y: null}, {x: 0.252559727, y: null}, {x: 0.18877551, y: null}, {x: 0.298319328, y: null}, {x: 0.271223022, y: null}, {x: 0.197781885, y: null}, {x: 0.132408575, y: null}, {x: 0.284571429, y: null}, {x: 0.226586103, y: null}, {x: 0.145098039, y: null}, {x: 0.129360465, y: null}, {x: 0.197867299, y: null}, {x: 0.154308617, y: null}, {x: 0.219548872, y: null}, {x: 0.243010753, y: null}, {x: 0.211058264, y: null}, {x: 0.179372197, y: null}, {x: 0.150867824, y: null}, {x: 0.193627451, y: null}, {x: 0.102760736, y: null}, {x: 0.24948025, y: null}, {x: 0.078291815, y: null}, {x: 0.306818182, y: null}, {x: 0.040133779, y: null}, {x: 0.095512083, y: null}, {x: 0.210982659, y: null}, {x: 0.211701309, y: null}, {x: 0.423970433, y: null}, {x: 0.080788177, y: null}, {x: 0.147515528, y: null}, {x: 0.100522193, y: null}, {x: 0.195862069, y: null}, {x: 0.141674333, y: null}, {x: 0.009746589, y: null}, {x: 0.025450689, y: null}, {x: 0.244771495, y: null}, {x: 0.034269663, y: null}, {x: 0.038180797, y: null}, {x: 0.046370968, y: null}, {x: 0.199263933, y: null}, {x: 0.163456533, y: null}, {x: 0.215189873, y: null}, {x: 0.126600985, y: null}, {x: 0.042480884, y: null}, {x: 0.112525117, y: null}, {x: 0.137198068, y: null}, {x: 0.009929078, y: null}, {x: 0.028089888, y: null}, {x: 0.00998004, y: null}, {x: 0.0, y: null}, {x: 0.023186238, y: null}, {x: 0.037634409, y: null}, {x: 0.097676874, y: null}, {x: 0.336879433, y: null}, {x: 0.135643298, y: null}, {x: 0.116852613, y: null}, {x: 0.23342416, y: null}, {x: 0.173665792, y: null}, {x: 0.035449299, y: null}, {x: 0.121384005, y: null}, {x: 0.070338421, y: null}, {x: 0.134317343, y: null}, {x: 0.057983943, y: null}, {x: 0.094017094, y: null}, {x: 0.134107286, y: null}, {x: 0.166007905, y: null}, {x: 0.295497781, y: null}, {x: 0.168582376, y: null}, {x: 0.127955494, y: null}, {x: 0.043971144, y: null}, {x: 0.150645624, y: null}, {x: 0.347122302, y: null}, {x: 0.253016086, y: null}, {x: 0.323897659, y: null}, {x: 0.133274493, y: null}, {x: 0.175303197, y: null}, {x: 0.033878505, y: null}, {x: 0.031158715, y: null}, {x: 0.277942046, y: null}, {x: 0.154488518, y: null}, {x: 0.431518152, y: null}, {x: 0.538291605, y: null}, {x: 0.261939219, y: null}, {x: 0.52178771, y: null}, {x: 0.213937622, y: null}, {x: 0.334791059, y: null}, {x: 0.543255132, y: null}, {x: 0.321678322, y: null}, {x: 0.434724092, y: null}, {x: 0.535338346, y: null}, {x: 0.152142857, y: null}, {x: 0.553892216, y: null}, {x: 0.145070423, y: null}, {x: 0.212456052, y: 33.039}, {x: 0.146570397, y: null}, {x: 0.495114007, y: null}, {x: 0.385745775, y: null}, {x: 0.551626591, y: null}, {x: 0.325, y: null}, {x: 0.526470588, y: null}, {x: 0.179633144, y: null}, {x: 0.122650376, y: null}, {x: 0.154534364, y: null}, {x: 0.345938375, y: null}, {x: 0.115569823, y: null}, {x: 0.193078324, y: null}, {x: 0.108669834, y: null}, {x: 0.14622057, y: null}, {x: 0.061983471, y: null}, {x: 0.117103236, y: null}, {x: 0.270594109, y: null}, {x: 0.107970784, y: null}, {x: 0.023195876, y: null}, {x: 0.142276423, y: null}, {x: 0.0995, y: null}, {x: 0.0, y: null}, {x: 0.105387803, y: null}, {x: 0.149651497, y: null}, {x: 0.110300081, y: null}, {x: 0.428510457, y: null}, {x: 0.303482587, y: null}, {x: 0.261183261, y: null}, {x: 0.125142857, y: null}, {x: 0.184031159, y: null}, {x: 0.106420405, y: null}, {x: 0.056272586, y: null}, {x: 0.093579978, y: null}, {x: 0.380517504, y: null}, {x: 0.03803132, y: null}, {x: 0.071298654, y: null}, {x: 0.041522491, y: null}, {x: 0.248221344, y: null}, {x: 0.131021195, y: null}, {x: 0.136246787, y: null}, {x: 0.038970588, y: null}, {x: 0.0, y: null}, {x: 0.033909149, y: null}, {x: 0.184305627, y: null}, {x: 0.148854962, y: null}, {x: 0.089928058, y: null}, {x: 0.332777778, y: null}, {x: 0.077930175, y: null}, {x: 0.300761421, y: null}, {x: 0.142760487, y: null}, {x: 0.074525745, y: null}, {x: 0.117110266, y: null}, {x: 0.188489209, y: null}, {x: 0.17903365, y: null}, {x: 0.03006012, y: null}, {x: 0.099131323, y: null}, {x: 0.081081081, y: null}, {x: 0.030331754, y: null}, {x: 0.311679337, y: null}, {x: 0.556321839, y: null}, {x: 0.537262873, y: null}, {x: 0.385205232, y: null}, {x: 0.367763905, y: null}, {x: 0.473902728, y: null}, {x: 0.183923706, y: null}, {x: 0.313021703, y: null}, {x: 0.093062606, y: null}, {x: 0.283836417, y: null}, {x: 0.142016807, y: null}, {x: 0.144469526, y: null}, {x: 0.183785343, y: null}, {x: 0.0, y: null}, {x: 0.215488216, y: null}, {x: 0.358087487, y: null}, {x: 0.088235294, y: null}, {x: 0.209141274, y: null}, {x: 0.135629709, y: 999.999999}, {x: 0.036441586, y: null}, {x: 0.089395267, y: null}, {x: 0.079268293, y: null}, {x: 0.178104575, y: null}, {x: 0.200087758, y: null}, {x: 0.035839161, y: null}, {x: 0.035991531, y: null}, {x: 0.28002414, y: null}, {x: 0.211298606, y: null}, {x: 0.105501618, y: null}, {x: 0.120287253, y: null}, {x: 0.050678087, y: null}, {x: 0.140625, y: null}, {x: 0.148466717, y: null}, {x: 0.093869732, y: null}, {x: 0.356367226, y: null}, {x: 0.686293436, y: null}, {x: 0.059957173, y: null}, {x: 0.205405405, y: null}, {x: 0.224552745, y: null}, {x: 0.434892541, y: null}, {x: 0.624816805, y: null}, {x: 0.6700611, y: null}, {x: 0.741833509, y: null}, {x: 0.379722621, y: null}, {x: 0.550424128, y: 95.803564}, {x: 0.177818515, y: null}, {x: 0.442614771, y: 1904.333217}, {x: 0.605597964, y: null}, {x: 0.788187373, y: null}, {x: 0.161825726, y: 33.812967}, {x: 0.594850949, y: null}, {x: 0.367713005, y: null}, {x: 0.541341654, y: null}, {x: 0.234375, y: 13.403297}, {x: 0.276821192, y: null}, {x: 0.639917696, y: null}, {x: 0.499451153, y: null}, {x: 0.533745492, y: null}, {x: 0.48988764, y: null}, {x: 0.218035825, y: null}, {x: 0.232484076, y: null}, {x: 0.205567452, y: null}, {x: 0.322404372, y: null}, {x: 0.433115824, y: null}, {x: 0.222574509, y: null}, {x: 0.748043819, y: null}, {x: 0.355035605, y: null}, {x: 0.48280943, y: null}, {x: 0.375722543, y: null}, {x: 0.1, y: null}, {x: 0.600938967, y: 29.512963}, {x: 0.389929742, y: null}, {x: 0.414154653, y: null}, {x: 0.660397074, y: null}, {x: 0.875912409, y: null}, {x: 0.516514127, y: null}, {x: 0.707711443, y: null}, {x: 0.547239264, y: null}, {x: 0.43877551, y: null}, {x: 0.747628084, y: null}, {x: 0.57496977, y: null}, {x: 0.624087591, y: null}, {x: 0.399719495, y: null}, {x: 0.76477146, y: null}, {x: 0.562366358, y: null}, {x: 0.443811075, y: null}, {x: 0.347487615, y: null}, {x: 0.438639125, y: null}, {x: 0.433465086, y: null}, {x: 0.097334878, y: null}, {x: 0.295546559, y: null}, {x: 0.27631579, y: null}, {x: 0.198875615, y: null}, {x: 0.513611615, y: null}, {x: 0.253521127, y: null}, {x: 0.467727675, y: null}, {x: 0.314814815, y: null}, {x: 0.275147929, y: null}, {x: 0.419631902, y: 292.744127}, {x: 0.655295316, y: 194.570504}, {x: 0.243040212, y: 443.440785}, {x: 0.674610449, y: null}, {x: 0.498817967, y: null}, {x: 0.323834197, y: null}, {x: 0.602385686, y: null}, {x: 0.352468427, y: null}, {x: 0.163748713, y: null}, {x: 0.042495479, y: null}, {x: 0.449458484, y: null}, {x: 0.109938435, y: null}, {x: 0.212871287, y: null}, {x: 0.083380925, y: null}, {x: 0.103698583, y: null}, {x: 0.053333333, y: null}, {x: 0.036954915, y: null}, {x: 0.099589322, y: null}, {x: 0.172568355, y: null}, {x: 0.180991736, y: null}, {x: 0.070634921, y: null}, {x: 0.106923077, y: null}, {x: 0.102112676, y: null}, {x: 0.091269841, y: null}, {x: 0.075156576, y: null}, {x: 0.072243346, y: null}, {x: 0.273972603, y: null}, {x: 0.174870466, y: null}, {x: 0.29314888, y: null}, {x: 0.050717703, y: null}, {x: 0.242591316, y: null}, {x: 0.133825944, y: null}, {x: 0.123239437, y: null}, {x: 0.216426193, y: null}, {x: 0.061816653, y: null}, {x: 0.054067219, y: null}, {x: 0.122442134, y: null}, {x: 0.022556391, y: null}, {x: 0.150758252, y: null}, {x: 0.172043011, y: null}, {x: 0.295297372, y: null}, {x: 0.238056013, y: null}, {x: 0.118386817, y: null}, {x: 0.138788427, y: null}, {x: 0.069073783, y: null}, {x: 0.211398964, y: null}, {x: 0.115089514, y: null}, {x: 0.066132265, y: null}, {x: 0.112410656, y: null}, {x: 0.07956778, y: null}, {x: 0.26761062, y: null}, {x: 0.485549133, y: null}, {x: 0.192277384, y: null}, {x: 0.259505703, y: null}, {x: 0.12866242, y: null}, {x: 0.224691358, y: null}, {x: 0.25716385, y: null}, {x: 0.204951857, y: null}, {x: 0.110807114, y: null}, {x: 0.410476191, y: 0.12512}, {x: 0.397526502, y: null}, {x: 0.076559546, y: null}, {x: 0.314787701, y: 5.77926}, {x: 0.421862348, y: null}, {x: 0.228301887, y: null}, {x: 0.095679012, y: null}, {x: 0.10554951, y: null}, {x: 0.375905797, y: null}, {x: 0.500721501, y: null}, {x: 0.451692308, y: null}, {x: 0.647188534, y: null}, {x: 0.377745242, y: null}, {x: 0.554154303, y: 734.949067}, {x: 0.651245552, y: null}, {x: 0.408196721, y: null}, {x: 0.677804296, y: null}, {x: 0.662087912, y: null}, {x: 0.67641129, y: null}, {x: 0.44057971, y: null}, {x: 0.41962775, y: null}, {x: 0.853675946, y: null}, {x: 0.206762029, y: null}, {x: 0.333333333, y: null}, {x: 0.108066184, y: null}, {x: 0.36872869, y: null}, {x: 0.625707357, y: null}, {x: 0.51184346, y: null}, {x: 0.206841687, y: null}, {x: 0.490566038, y: null}, {x: 0.628571429, y: 11.58294}, {x: 0.554341227, y: null}, {x: 0.512588117, y: 71.329358}, {x: 0.529080675, y: null}, {x: 0.509892086, y: null}, {x: 0.243816254, y: null}, {x: 0.561360875, y: null}, {x: 0.611918605, y: null}, {x: 0.221719457, y: null}, {x: 0.44375963, y: null}, {x: 0.159322034, y: null}, {x: 0.540511727, y: null}, {x: 0.211457456, y: null}, {x: 0.182598039, y: null}, {x: 0.619293078, y: null}, {x: 0.743551953, y: null}, {x: 0.310638298, y: null}, {x: 0.808792743, y: null}, {x: 0.663247863, y: null}, {x: 0.668859649, y: 148.959479}, {x: 0.720666667, y: null}, {x: 0.308189655, y: null}, {x: 0.6398641, y: null}, {x: 0.441485069, y: null}, {x: 0.315717227, y: null}, {x: 0.15008726, y: null}, {x: 0.263295554, y: null}, {x: 0.239147593, y: null}, {x: 0.325227964, y: null}, {x: 0.233396584, y: null}, {x: 0.781619654, y: null}, {x: 0.546171171, y: null}, {x: 0.250716332, y: null}, {x: 0.468686869, y: null}, {x: 0.435022026, y: 291.200847}, {x: 0.506972929, y: null}, {x: 0.461800819, y: null}, {x: 0.451120163, y: null}, {x: 0.723966119, y: 123.559491}, {x: 0.549773756, y: null}, {x: 0.366477273, y: 253.998766}, {x: 0.602469136, y: 25.889026}, {x: 0.335632184, y: null}, {x: 0.205188679, y: 32.36738}, {x: 0.094179894, y: 54.925090000000004}, {x: 0.152727273, y: null}, {x: 0.352447552, y: null}, {x: 0.078866769, y: null}, {x: 0.290153746, y: null}, {x: 0.126039667, y: null}, {x: 0.065929566, y: null}, {x: 0.094517958, y: null}, {x: 0.143900657, y: null}, {x: 0.156312625, y: null}, {x: 0.335219236, y: null}, {x: 0.330745342, y: null}, {x: 0.235877863, y: null}, {x: 0.184981685, y: null}, {x: 0.105099778, y: null}, {x: 0.03986711, y: null}, {x: 0.350682594, y: null}, {x: 0.046391753, y: null}, {x: 0.015042118, y: null}, {x: 0.066847335, y: null}, {x: 0.04549675, y: null}, {x: 0.104890605, y: null}, {x: 0.121355179, y: null}, {x: 0.214150048, y: null}, {x: 0.14379085, y: 40.416186}, {x: 0.440842788, y: null}, {x: 0.232837934, y: null}, {x: 0.081192189, y: null}, {x: 0.081823495, y: null}, {x: 0.197049526, y: null}, {x: 0.264011799, y: null}, {x: 0.602634468, y: null}, {x: 0.46895893, y: null}, {x: 0.129657228, y: null}, {x: 0.233810498, y: null}, {x: 0.221570926, y: null}, {x: 0.351077313, y: null}, {x: 0.08591674, y: null}, {x: 0.08753568, y: null}, {x: 0.101920236, y: null}, {x: 0.196679438, y: null}, {x: 0.077414773, y: null}, {x: 0.0, y: null}, {x: 0.065301605, y: null}, {x: 0.256315007, y: null}, {x: 0.175238095, y: null}, {x: 0.0, y: null}, {x: 0.406471183, y: null}, {x: 0.160388821, y: null}, {x: 0.110381078, y: null}, {x: 0.442328042, y: null}, {x: 0.284974093, y: null}, {x: 0.137784091, y: null}, {x: 0.261538462, y: null}, {x: 0.167650531, y: null}, {x: 0.50991832, y: null}, {x: 0.167852906, y: null}, {x: 0.200668896, y: null}, {x: 0.046357616, y: null}, {x: 0.24876115, y: null}, {x: 0.25142474, y: null}, {x: 0.0, y: null}, {x: 0.165856294, y: null}, {x: 0.261694058, y: null}, {x: 0.066869301, y: null}, {x: 0.066570188, y: null}, {x: 0.105263158, y: null}, {x: 0.0, y: null}, {x: 0.068891281, y: 1.80788}, {x: 0.233796296, y: null}, {x: 0.053456221, y: null}, {x: 0.154160982, y: null}, {x: 0.049940547, y: null}, {x: 0.183856502, y: null}, {x: 0.231845436, y: null}, {x: 0.12295082, y: null}, {x: 0.115600449, y: null}, {x: 0.020338983, y: null}, {x: 0.1875, y: null}, {x: 0.378303965, y: null}, {x: 0.04609475, y: null}, {x: 0.060844667, y: null}, {x: 0.038028169, y: null}, {x: 0.03894081, y: 1.335464}, {x: 0.0, y: null}, {x: 0.088560886, y: null}, {x: 0.0, y: null}, {x: 0.15542522, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059508409, y: null}, {x: 0.07254623, y: null}, {x: 0.0, y: null}, {x: 0.241678727, y: null}, {x: 0.0, y: null}, {x: 0.024134313, y: null}, {x: 0.17519305, y: null}, {x: 0.0, y: null}, {x: 0.330745342, y: null}, {x: 0.06624954, y: null}, {x: 0.388235294, y: null}, {x: 0.228197674, y: null}, {x: 0.122205663, y: null}, {x: 0.119383825, y: 0.072}, {x: 0.122574956, y: null}, {x: 0.011473963, y: null}, {x: 0.277742142, y: null}, {x: 0.348501665, y: null}, {x: 0.241352806, y: null}, {x: 0.331890332, y: null}, {x: 0.139247312, y: null}, {x: 0.286061588, y: null}, {x: 0.5, y: null}, {x: 0.477040816, y: null}, {x: 0.139833711, y: null}, {x: 0.260096931, y: null}, {x: 0.076660988, y: null}, {x: 0.28003003, y: null}, {x: 0.728533095, y: null}, {x: 0.468387097, y: null}, {x: 0.128997868, y: null}, {x: 0.087064677, y: null}, {x: 0.382847038, y: null}, {x: 0.088541667, y: null}, {x: 0.099383667, y: null}, {x: 0.258237548, y: null}, {x: 0.204038257, y: null}, {x: 0.30781759, y: null}, {x: 0.171601615, y: null}, {x: 0.354124749, y: null}, {x: 0.240371846, y: null}, {x: 0.191685912, y: null}, {x: 0.064888248, y: null}, {x: 0.265880218, y: null}, {x: 0.352604465, y: null}, {x: 0.239694008, y: null}, {x: 0.51790393, y: null}, {x: 0.290291262, y: null}, {x: 0.605022831, y: null}, {x: 0.191755725, y: null}, {x: 0.223675155, y: null}, {x: 0.291296625, y: null}, {x: 0.208872458, y: null}, {x: 0.102511881, y: null}, {x: 0.170873786, y: null}, {x: 0.28280543, y: null}, {x: 0.365260901, y: null}, {x: 0.513715711, y: null}, {x: 0.236525048, y: null}, {x: 0.121835443, y: null}, {x: 0.150914634, y: null}, {x: 0.098342541, y: null}, {x: 0.084821429, y: null}, {x: 0.284444444, y: null}, {x: 0.30106486, y: null}, {x: 0.027835052, y: null}, {x: 0.061639344, y: null}, {x: 0.354000693, y: null}, {x: 0.450224215, y: null}, {x: 0.759481961, y: null}, {x: 0.438571429, y: null}, {x: 0.126286249, y: null}, {x: 0.193333333, y: null}, {x: 0.208655332, y: null}, {x: 0.099694812, y: null}, {x: 0.322732627, y: null}, {x: 0.355742297, y: null}, {x: 0.042606516, y: 32.512411}, {x: 0.595081967, y: null}, {x: 0.190427699, y: null}, {x: 0.422920303, y: null}, {x: 0.247802428, y: null}, {x: 0.255568582, y: null}, {x: 0.427750411, y: null}, {x: 0.248835662, y: null}, {x: 0.336622807, y: null}, {x: 0.584225352, y: null}, {x: 0.419381788, y: null}, {x: 0.266603416, y: null}, {x: 0.28957265, y: null}, {x: 0.341797662, y: null}, {x: 0.424284717, y: null}, {x: 0.291300878, y: null}, {x: 0.452495974, y: null}, {x: 0.036617262, y: null}, {x: 0.310410095, y: null}, {x: 0.183041723, y: null}, {x: 0.131538462, y: null}, {x: 0.418300654, y: null}, {x: 0.240700219, y: null}, {x: 0.331983806, y: null}, {x: 0.671366594, y: null}, {x: 0.210191083, y: null}, {x: 0.248730965, y: null}, {x: 0.273449921, y: null}, {x: 0.319639842, y: null}, {x: 0.357723577, y: null}, {x: 0.235572375, y: null}, {x: 0.028384279, y: null}, {x: 0.49232159, y: null}, {x: 0.56680932, y: null}, {x: 0.728173667, y: null}, {x: 0.853629977, y: null}, {x: 0.566576819, y: null}, {x: 0.553406224, y: 144.338492}, {x: 0.558408216, y: null}, {x: 0.577137547, y: null}, {x: 0.595535128, y: null}, {x: 0.52321297, y: null}, {x: 0.453304598, y: null}, {x: 0.285923754, y: null}, {x: 0.139382601, y: null}, {x: 0.488148623, y: null}, {x: 0.189354276, y: null}, {x: 0.283494105, y: null}, {x: 0.069550467, y: null}, {x: 0.115625, y: null}, {x: 0.173913044, y: null}, {x: 0.05707196, y: null}, {x: 0.054794521, y: null}, {x: 0.047890536, y: null}, {x: 0.0, y: null}, {x: 0.038501561, y: null}, {x: 0.3282881, y: null}, {x: 0.372767857, y: null}, {x: 0.364224138, y: null}, {x: 0.03909465, y: null}, {x: 0.250643777, y: null}, {x: 0.137000519, y: null}, {x: 0.107705407, y: null}, {x: 0.242424242, y: null}, {x: 0.20891905, y: null}, {x: 0.004942339, y: null}, {x: 0.242105263, y: null}, {x: 0.008240141, y: null}, {x: 0.073412698, y: null}, {x: 0.128055879, y: null}, {x: 0.010791367, y: null}, {x: 0.374384237, y: null}, {x: 0.055157593, y: null}, {x: 0.078301261, y: null}, {x: 0.081294964, y: null}, {x: 0.006237006, y: null}, {x: 0.123500353, y: null}, {x: 0.126582279, y: null}, {x: 0.059669686, y: null}, {x: 0.0, y: null}, {x: 0.208034433, y: null}, {x: 0.126498801, y: null}, {x: 0.065919862, y: null}, {x: 0.12458138, y: null}, {x: 0.272670808, y: null}, {x: 0.142638037, y: null}, {x: 0.166266218, y: null}, {x: 0.0, y: null}, {x: 0.24361949, y: null}, {x: 0.276685393, y: null}, {x: 0.125834128, y: null}, {x: 0.226351351, y: null}, {x: 0.030082988, y: null}, {x: 0.21174206, y: null}, {x: 0.064173592, y: null}, {x: 0.089564174, y: null}, {x: 0.226962457, y: null}, {x: 0.237799043, y: null}, {x: 0.225, y: null}, {x: 0.21668533, y: null}, {x: 0.506993007, y: null}, {x: 0.575586095, y: null}, {x: 0.147880041, y: null}, {x: 0.031620553, y: null}, {x: 0.250886525, y: null}, {x: 0.250726744, y: null}, {x: 0.415909091, y: null}, {x: 0.180678466, y: null}, {x: 0.17312253, y: null}, {x: 0.197667281, y: null}, {x: 0.26823135, y: null}, {x: 0.13174404, y: null}, {x: 0.204637097, y: null}, {x: 0.073013601, y: null}, {x: 0.071913161, y: null}, {x: 0.179347826, y: null}, {x: 0.192756292, y: null}, {x: 0.05982906, y: null}, {x: 0.151818182, y: null}, {x: 0.059722886, y: null}, {x: 0.0, y: null}, {x: 0.225106182, y: null}, {x: 0.102136182, y: null}, {x: 0.205702648, y: null}, {x: 0.031867431, y: null}, {x: 0.124734607, y: null}, {x: 0.123523622, y: null}, {x: 0.0075, y: null}, {x: 0.073198847, y: null}, {x: 0.109530583, y: null}, {x: 0.025334272, y: null}, {x: 0.093762108, y: null}, {x: 0.148533586, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034431138, y: null}, {x: 0.147837043, y: null}, {x: 0.087900724, y: null}, {x: 0.139561707, y: null}, {x: 0.081692913, y: null}, {x: 0.077028886, y: null}, {x: 0.097605893, y: null}, {x: 0.118259224, y: null}, {x: 0.0, y: null}, {x: 0.400275103, y: null}, {x: 0.097457627, y: null}, {x: 0.029874214, y: null}, {x: 0.099903007, y: null}, {x: 0.250535332, y: null}, {x: 0.072360617, y: null}, {x: 0.053750738, y: null}, {x: 0.095398429, y: null}, {x: 0.062588905, y: null}, {x: 0.34470377, y: null}, {x: 0.189873418, y: null}, {x: 0.121803812, y: null}, {x: 0.042997543, y: null}, {x: 0.134656489, y: null}, {x: 0.151436031, y: null}, {x: 0.099447514, y: null}, {x: 0.047482014, y: null}, {x: 0.104932735, y: null}, {x: 0.449386503, y: null}, {x: 0.340096618, y: null}, {x: 0.281512605, y: null}, {x: 0.213530655, y: null}, {x: 0.187751813, y: null}, {x: 0.131736527, y: null}, {x: 0.707762557, y: null}, {x: 0.238145416, y: null}, {x: 0.535496957, y: null}, {x: 0.440976934, y: null}, {x: 0.062064156, y: null}, {x: 0.039069767, y: null}, {x: 0.345594525, y: null}, {x: 0.046544429, y: null}, {x: 0.282194849, y: null}, {x: 0.203883495, y: null}, {x: 0.080932203, y: null}, {x: 0.236886633, y: null}, {x: 0.170178282, y: null}, {x: 0.119824341, y: null}, {x: 0.05875576, y: null}, {x: 0.0, y: null}, {x: 0.070175439, y: null}, {x: 0.108490566, y: null}, {x: 0.043960924, y: null}, {x: 0.063049853, y: null}, {x: 0.08925144, y: null}, {x: 0.246666667, y: null}, {x: 0.080424886, y: null}, {x: 0.119806763, y: null}, {x: 0.236170213, y: null}, {x: 0.134193548, y: null}, {x: 0.053747161, y: null}, {x: 0.244140625, y: null}, {x: 0.023822128, y: null}, {x: 0.105835806, y: 0.89}, {x: 0.125886525, y: null}, {x: 0.305578011, y: null}, {x: 0.366630077, y: null}, {x: 0.493297587, y: 0.18}, {x: 0.361190613, y: null}, {x: 0.231748158, y: 0.276}, {x: 0.313868613, y: null}, {x: 0.466990291, y: null}, {x: 0.396423249, y: null}, {x: 0.507042254, y: null}, {x: 0.185768604, y: null}, {x: 0.095192308, y: null}, {x: 0.129746835, y: null}, {x: 0.143474503, y: null}, {x: 0.011997177, y: null}, {x: 0.049760766, y: null}, {x: 0.147965475, y: null}, {x: 0.067164179, y: null}, {x: 0.121348315, y: null}, {x: 0.164165103, y: null}, {x: 0.154113557, y: null}, {x: 0.219512195, y: null}, {x: 0.182285714, y: null}, {x: 0.223905724, y: null}, {x: 0.110701107, y: null}, {x: 0.108206246, y: null}, {x: 0.260482846, y: null}, {x: 0.202933985, y: null}, {x: 0.13836478, y: null}, {x: 0.056629093, y: null}, {x: 0.170833333, y: null}, {x: 0.701098901, y: 176.54059600000002}, {x: 0.514604151, y: null}, {x: 0.267631774, y: null}, {x: 0.440956652, y: null}, {x: 0.259455371, y: null}, {x: 0.475813544, y: null}, {x: 0.484114977, y: null}, {x: 0.498961578, y: null}, {x: 0.575031526, y: null}, {x: 0.844114528, y: null}, {x: 0.678059537, y: null}, {x: 0.697875688, y: null}, {x: 0.483846732, y: null}, {x: 0.156104069, y: null}, {x: 0.39964943, y: null}, {x: 0.653104925, y: null}, {x: 0.223904383, y: null}, {x: 0.534025375, y: null}, {x: 0.449973531, y: null}, {x: 0.241695304, y: null}, {x: 0.430475087, y: null}, {x: 0.379116466, y: null}, {x: 0.531739812, y: null}, {x: 0.430260047, y: null}, {x: 0.59377494, y: null}, {x: 0.702757229, y: null}, {x: 0.842821782, y: 6.126247}, {x: 0.587531172, y: null}, {x: 0.694528875, y: null}, {x: 0.583429229, y: null}, {x: 0.223314607, y: null}, {x: 0.663216011, y: null}, {x: 0.699239544, y: null}, {x: 0.600928074, y: null}, {x: 0.453580902, y: null}, {x: 0.642537056, y: null}, {x: 0.30043384, y: null}, {x: 0.442571128, y: null}, {x: 0.385982231, y: null}, {x: 0.361809045, y: null}, {x: 0.599766628, y: null}, {x: 0.564878496, y: null}, {x: 0.37716263, y: null}, {x: 0.437322745, y: null}, {x: 0.403703704, y: 38.4927}, {x: 0.460820896, y: null}, {x: 0.408071749, y: null}, {x: 0.542607429, y: null}, {x: 0.191560244, y: null}, {x: 0.72091131, y: null}, {x: 0.446225785, y: null}, {x: 0.326041667, y: null}, {x: 0.45392022, y: null}, {x: 0.431778929, y: null}, {x: 0.181268012, y: null}, {x: 0.246018671, y: null}, {x: 0.323624596, y: null}, {x: 0.395196507, y: null}, {x: 0.369465649, y: null}, {x: 0.039898132, y: null}, {x: 0.01253012, y: null}, {x: 0.110054348, y: null}, {x: 0.351037344, y: null}, {x: 0.294650561, y: null}, {x: 0.141031493, y: null}, {x: 0.030372058, y: null}, {x: 0.151339609, y: null}, {x: 0.571428571, y: null}, {x: 0.191186441, y: null}, {x: 0.109243698, y: null}, {x: 0.519886364, y: null}, {x: 0.107263514, y: null}, {x: 0.422110553, y: null}, {x: 0.389270977, y: null}, {x: 0.443122677, y: null}, {x: 0.1172771, y: null}, {x: 0.472616633, y: null}, {x: 0.327967807, y: null}, {x: 0.279646018, y: null}, {x: 0.272084806, y: null}, {x: 0.183970856, y: null}, {x: 0.557692308, y: null}, {x: 0.142857143, y: null}, {x: 0.102181401, y: null}, {x: 0.261257607, y: null}, {x: 0.114620939, y: null}, {x: 0.079096045, y: null}, {x: 0.075413223, y: null}, {x: 0.025963808, y: null}, {x: 0.0, y: null}, {x: 0.108818011, y: null}, {x: 0.247819767, y: null}, {x: 0.170141785, y: null}, {x: 0.042908224, y: null}, {x: 0.260135135, y: null}, {x: 0.213114754, y: null}, {x: 0.087719298, y: 57.7297}, {x: 0.146325879, y: null}, {x: 0.06626506, y: null}, {x: 0.143484627, y: null}, {x: 0.210211408, y: null}, {x: 0.321296296, y: null}, {x: 0.284165699, y: null}, {x: 0.217503218, y: null}, {x: 0.037260826, y: null}, {x: 0.081818182, y: null}, {x: 0.036929057, y: null}, {x: 0.103345725, y: null}, {x: 0.0659945, y: null}, {x: 0.00551655, y: null}, {x: 0.00818148, y: null}, {x: 0.0, y: null}, {x: 0.121928166, y: null}, {x: 0.020486556, y: null}, {x: 0.09212963, y: null}, {x: 0.099863201, y: null}, {x: 0.002478315, y: null}, {x: 0.231884058, y: null}, {x: 0.203328509, y: null}, {x: 0.124282983, y: null}, {x: 0.072265625, y: null}, {x: 0.131716595, y: null}, {x: 0.032950574, y: null}, {x: 0.020357143, y: null}, {x: 0.036649215, y: null}, {x: 0.146734521, y: null}, {x: 0.119365609, y: null}, {x: 0.048291233, y: null}, {x: 0.07898773, y: null}, {x: 0.156801662, y: null}, {x: 0.054852321, y: null}, {x: 0.043158411, y: null}, {x: 0.044487427, y: null}, {x: 0.0, y: null}, {x: 0.455776173, y: null}, {x: 0.767064846, y: 26.852272}, {x: 0.769824561, y: 17.432869}, {x: 0.377962085, y: null}, {x: 0.455019557, y: null}, {x: 0.481481482, y: 2.114101}, {x: 0.082802548, y: null}, {x: 0.291005291, y: 27.576203}, {x: 0.081259151, y: null}, {x: 0.018018018, y: null}, {x: 0.067116927, y: null}, {x: 0.106221548, y: null}, {x: 0.06993007, y: null}, {x: 0.049368542, y: null}, {x: 0.293002916, y: null}, {x: 0.022937063, y: null}, {x: 0.134020619, y: null}, {x: 0.370629371, y: null}, {x: 0.099415205, y: null}, {x: 0.027114267, y: null}, {x: 0.083705357, y: null}, {x: 0.171150972, y: null}, {x: 0.0625, y: null}, {x: 0.344385833, y: null}, {x: 0.274220963, y: null}, {x: 0.432973316, y: 9.574524}, {x: 0.280686318, y: null}, {x: 0.575692042, y: null}, {x: 0.477936607, y: 17.33541}, {x: 0.101402373, y: null}, {x: 0.225555556, y: null}, {x: 0.735171262, y: null}, {x: 0.276973377, y: null}, {x: 0.222515391, y: null}, {x: 0.097749196, y: 19.605847}, {x: 0.193612775, y: null}, {x: 0.242599743, y: 0.363247}, {x: 0.231019523, y: null}, {x: 0.09132948, y: 51.7282}, {x: 0.336648814, y: null}, {x: 0.073515551, y: null}, {x: 0.443119266, y: null}, {x: 0.064880568, y: null}, {x: 0.171759747, y: null}, {x: 0.152, y: null}, {x: 0.130620985, y: null}, {x: 0.073843416, y: null}, {x: 0.040244524, y: null}, {x: 0.052049747, y: null}, {x: 0.062203791, y: null}, {x: 0.074652778, y: null}, {x: 0.206225681, y: null}, {x: 0.137598598, y: null}, {x: 0.034639927, y: null}, {x: 0.064876957, y: null}, {x: 0.027135678, y: null}, {x: 0.080921053, y: null}, {x: 0.01179941, y: null}, {x: 0.083467095, y: null}, {x: 0.09602649, y: null}, {x: 0.089690722, y: null}, {x: 0.144578313, y: null}, {x: 0.179343475, y: null}, {x: 0.154447115, y: null}, {x: 0.193387159, y: null}, {x: 0.058727569, y: null}, {x: 0.253367543, y: null}, {x: 0.110105581, y: null}, {x: 0.238904627, y: null}, {x: 0.396039604, y: null}, {x: 0.313856427, y: null}, {x: 0.050810811, y: null}, {x: 0.078746177, y: null}, {x: 0.217809868, y: null}, {x: 0.18401487, y: null}, {x: 0.050649351, y: null}, {x: 0.153535354, y: null}, {x: 0.094250707, y: null}, {x: 0.115471358, y: null}, {x: 0.042207792, y: null}, {x: 0.076076555, y: null}, {x: 0.049311927, y: null}, {x: 0.042461005, y: null}, {x: 0.260626398, y: null}, {x: 0.0, y: null}, {x: 0.114527629, y: null}, {x: 0.425222312, y: null}, {x: 0.058897243, y: null}, {x: 0.071672355, y: null}, {x: 0.029213483, y: null}, {x: 0.133333333, y: null}, {x: 0.057350565, y: null}, {x: 0.125, y: null}, {x: 0.061702128, y: null}, {x: 0.098441345, y: null}, {x: 0.220138203, y: null}, {x: 0.104651163, y: null}, {x: 0.048260382, y: null}, {x: 0.030064913, y: null}, {x: 0.172235023, y: null}, {x: 0.060266293, y: null}, {x: 0.0, y: null}, {x: 0.284313726, y: null}, {x: 0.188615123, y: null}, {x: 0.202603743, y: null}, {x: 0.293163384, y: null}, {x: 0.168717048, y: null}, {x: 0.271302645, y: null}, {x: 0.203170875, y: null}, {x: 0.265473527, y: null}, {x: 0.136422977, y: null}, {x: 0.196226415, y: null}, {x: 0.265129683, y: null}, {x: 0.271834061, y: null}, {x: 0.216467464, y: null}, {x: 0.305578011, y: null}, {x: 0.161137441, y: null}, {x: 0.43122102, y: null}, {x: 0.384773663, y: null}, {x: 0.242376857, y: null}, {x: 0.546369518, y: null}, {x: 0.25950783, y: null}, {x: 0.139261745, y: null}, {x: 0.211753731, y: null}, {x: 0.204545455, y: 0.751364}, {x: 0.575102881, y: null}, {x: 0.202949438, y: null}, {x: 0.358823529, y: null}, {x: 0.139931741, y: null}, {x: 0.210769231, y: 0.6538919999999999}, {x: 0.269709544, y: null}, {x: 0.094867807, y: null}, {x: 0.242771084, y: null}, {x: 0.516574586, y: null}, {x: 0.185160867, y: null}, {x: 0.305657605, y: null}, {x: 0.096399535, y: null}, {x: 0.132275132, y: null}, {x: 0.210355987, y: null}, {x: 0.130882353, y: null}, {x: 0.277289837, y: null}, {x: 0.444444444, y: null}, {x: 0.145325203, y: null}, {x: 0.133266533, y: null}, {x: 0.103599649, y: null}, {x: 0.09502924, y: null}, {x: 0.527831094, y: null}, {x: 0.28021555, y: null}, {x: 0.320848939, y: null}, {x: 0.353012048, y: null}, {x: 0.452502554, y: null}, {x: 0.261658031, y: null}, {x: 0.463980464, y: null}, {x: 0.487743026, y: null}, {x: 0.317254174, y: null}, {x: 0.552440291, y: null}, {x: 0.390855457, y: null}, {x: 0.188787185, y: null}, {x: 0.213510253, y: null}, {x: 0.131593559, y: null}, {x: 0.122399021, y: null}, {x: 0.096134787, y: null}, {x: 0.336466165, y: null}, {x: 0.267213115, y: null}, {x: 0.575104728, y: null}, {x: 0.536531365, y: null}, {x: 0.28406633, y: null}, {x: 0.304469274, y: null}, {x: 0.588888889, y: 19.621000000000002}, {x: 0.522004062, y: null}, {x: 0.591706539, y: null}, {x: 0.200867052, y: null}, {x: 0.520090978, y: null}, {x: 0.296116505, y: null}, {x: 0.332026144, y: null}, {x: 0.44895288, y: null}, {x: 0.32325414, y: null}, {x: 0.566037736, y: null}, {x: 0.57354618, y: null}, {x: 0.371962617, y: null}, {x: 0.490015361, y: null}, {x: 0.551122195, y: null}, {x: 0.069345942, y: null}, {x: 0.269148175, y: null}, {x: 0.576488706, y: null}, {x: 0.615754083, y: null}, {x: 0.387298748, y: null}, {x: 0.077970297, y: null}, {x: 0.764534884, y: null}, {x: 0.828220859, y: null}, {x: 0.818820225, y: null}, {x: 0.746081505, y: null}, {x: 0.793846154, y: 37.631}, {x: 0.830141549, y: null}, {x: 0.856720827, y: null}, {x: 0.802768166, y: null}, {x: 0.71741573, y: null}, {x: 0.668956044, y: null}, {x: 0.743458839, y: 739.527068}, {x: 0.403005465, y: null}, {x: 0.408921933, y: null}, {x: 0.84516129, y: null}, {x: 0.932765152, y: null}, {x: 0.47826087, y: null}, {x: 0.626996805, y: null}, {x: 0.643668122, y: null}, {x: 0.527979275, y: null}, {x: 0.328125, y: null}, {x: 0.713407134, y: null}, {x: 0.429123001, y: null}, {x: 0.492917847, y: null}, {x: 0.45534407, y: null}, {x: 0.366808109, y: null}, {x: 0.246478873, y: null}, {x: 0.151224707, y: null}, {x: 0.227979275, y: null}, {x: 0.753797468, y: null}, {x: 0.525612472, y: null}, {x: 0.629826898, y: null}, {x: 0.478316327, y: null}, {x: 0.552777778, y: null}, {x: 0.303106633, y: null}, {x: 0.152724482, y: null}, {x: 0.2092257, y: null}, {x: 0.272527473, y: null}, {x: 0.328458257, y: null}, {x: 0.509739067, y: null}, {x: 0.093291405, y: null}, {x: 0.068743287, y: null}, {x: 0.171389081, y: null}, {x: 0.250231696, y: null}, {x: 0.09556314, y: null}, {x: 0.253754941, y: null}, {x: 0.626960193, y: null}, {x: 0.150627615, y: null}, {x: 0.135106383, y: null}, {x: 0.422184007, y: null}, {x: 0.722543353, y: null}, {x: 0.625109745, y: null}, {x: 0.810502283, y: null}, {x: 0.188405797, y: null}, {x: 0.525821596, y: null}, {x: 0.864829396, y: null}, {x: 0.648395722, y: null}, {x: 0.590804598, y: null}, {x: 0.59139785, y: null}, {x: 0.629148629, y: null}, {x: 0.887456038, y: 27.040660999999997}, {x: 0.830671989, y: 81.680767}, {x: 0.607107601, y: null}, {x: 0.568047337, y: null}, {x: 0.760493827, y: null}, {x: 0.758784426, y: 198.331469}, {x: 0.744067797, y: null}, {x: 0.775330397, y: null}, {x: 0.282229965, y: null}, {x: 0.401709402, y: null}, {x: 0.308243728, y: null}, {x: 0.188108108, y: null}, {x: 0.550344828, y: null}, {x: 0.518703242, y: null}, {x: 0.595276873, y: 7.279}, {x: 0.657028112, y: null}, {x: 0.904255319, y: null}, {x: 0.494623656, y: null}, {x: 0.55884025, y: null}, {x: 0.62118019, y: null}, {x: 0.758812616, y: null}, {x: 0.571428571, y: null}, {x: 0.013079667, y: null}, {x: 0.096311475, y: null}, {x: 0.161959654, y: null}, {x: 0.414634146, y: null}, {x: 0.181139122, y: null}, {x: 0.115853659, y: null}, {x: 0.149874055, y: null}, {x: 0.006256517, y: null}, {x: 0.319655857, y: null}, {x: 0.30418251, y: null}, {x: 0.231316726, y: null}, {x: 0.182841069, y: null}, {x: 0.61958457, y: null}, {x: 0.599858857, y: null}, {x: 0.250772082, y: null}, {x: 0.471014493, y: null}, {x: 0.286542923, y: null}, {x: 0.159032613, y: null}, {x: 0.124767225, y: null}, {x: 0.338235294, y: null}, {x: 0.4717477, y: null}, {x: 0.24742268, y: null}, {x: 0.372901679, y: null}, {x: 0.269512195, y: null}, {x: 0.378735233, y: null}, {x: 0.124608968, y: null}, {x: 0.270440252, y: null}, {x: 0.293838863, y: null}, {x: 0.27100271, y: null}, {x: 0.186179326, y: null}, {x: 0.25160188, y: null}, {x: 0.065934066, y: null}, {x: 0.212643678, y: null}, {x: 0.130984043, y: null}, {x: 0.143646409, y: null}, {x: 0.132661183, y: null}, {x: 0.405769231, y: null}, {x: 0.477355073, y: null}, {x: 0.133263379, y: null}, {x: 0.173192771, y: null}, {x: 0.15261959, y: 1.005625}, {x: 0.039344262, y: null}, {x: 0.447310243, y: null}, {x: 0.24972973, y: null}, {x: 0.540861813, y: null}, {x: 0.38902148, y: 21.590654999999998}, {x: 0.551764706, y: 2.36377}, {x: 0.240875912, y: null}, {x: 0.590372389, y: 69.454067}, {x: 0.582191781, y: null}, {x: 0.156033287, y: null}, {x: 0.238568589, y: null}, {x: 0.425517702, y: null}, {x: 0.518569464, y: null}, {x: 0.243243243, y: null}, {x: 0.126702997, y: null}, {x: 0.283415842, y: null}, {x: 0.084016393, y: 4.023005}, {x: 0.058216654, y: null}, {x: 0.742090125, y: 15.273601}, {x: 0.503474904, y: null}, {x: 0.130693069, y: null}, {x: 0.463446475, y: null}, {x: 0.213302752, y: null}, {x: 0.408510638, y: 17.667698}, {x: 0.080453842, y: 130.09780700000002}, {x: 0.443373494, y: null}, {x: 0.172034564, y: null}, {x: 0.329143755, y: null}, {x: 0.222767419, y: null}, {x: 0.16568915, y: null}, {x: 0.233438486, y: null}, {x: 0.429588608, y: null}, {x: 0.152290076, y: 98.279335}, {x: 0.615189873, y: 0.465397}, {x: 0.0, y: null}, {x: 0.391818182, y: null}, {x: 0.343976778, y: null}, {x: 0.182981928, y: null}, {x: 0.182816538, y: null}, {x: 0.772769953, y: null}, {x: 0.612454213, y: null}, {x: 0.769387755, y: null}, {x: 0.925742574, y: null}, {x: 0.610204082, y: null}, {x: 0.81275441, y: 1.850684}, {x: 0.344902386, y: null}, {x: 0.870431894, y: null}, {x: 0.921259843, y: 211.675397}, {x: 0.581546459, y: null}, {x: 0.808118081, y: null}, {x: 0.67816092, y: null}, {x: 0.554759468, y: null}, {x: 0.107055961, y: null}, {x: 0.256445048, y: null}, {x: 0.176374077, y: 106.444359}, {x: 0.195470799, y: 2.454447}, {x: 0.064238411, y: null}, {x: 0.817941953, y: null}, {x: 0.805376344, y: null}, {x: 0.49871134, y: null}, {x: 0.133802817, y: null}, {x: 0.579635684, y: null}, {x: 0.077654517, y: null}, {x: 0.406214039, y: null}, {x: 0.207774799, y: null}, {x: 0.208432023, y: null}, {x: 0.186495177, y: null}, {x: 0.227573751, y: null}, {x: 0.404160476, y: 617.717181}, {x: 0.51648773, y: 0.620762}, {x: 0.614415675, y: null}, {x: 0.392712551, y: null}, {x: 0.392907801, y: null}, {x: 0.191472245, y: null}, {x: 0.388538682, y: null}, {x: 0.628257888, y: null}, {x: 0.291610284, y: null}, {x: 0.354231975, y: null}, {x: 0.363251482, y: null}, {x: 0.466850829, y: null}, {x: 0.292708888, y: null}, {x: 0.616052061, y: null}, {x: 0.43753015, y: null}, {x: 0.719957082, y: null}, {x: 0.239208633, y: null}, {x: 0.28988764, y: null}, {x: 0.140200286, y: null}, {x: 0.113428944, y: null}, {x: 0.006214689, y: null}, {x: 0.071482318, y: null}, {x: 0.143026005, y: null}, {x: 0.474967062, y: null}, {x: 0.123188406, y: null}, {x: 0.114958449, y: null}, {x: 0.186068702, y: null}, {x: 0.060692271, y: null}, {x: 0.017900732, y: null}, {x: 0.142712551, y: null}, {x: 0.622906292, y: null}, {x: 0.536585366, y: null}, {x: 0.135753176, y: null}, {x: 0.042706965, y: null}, {x: 0.188905547, y: null}, {x: 0.117304493, y: null}, {x: 0.047355474, y: null}, {x: 0.346038114, y: null}, {x: 0.67498582, y: null}, {x: 0.401002506, y: null}, {x: 0.203161593, y: null}, {x: 0.200686106, y: null}, {x: 0.524515393, y: null}, {x: 0.407225965, y: null}, {x: 0.502504174, y: null}, {x: 0.109704641, y: null}, {x: 0.197188309, y: null}, {x: 0.050936768, y: null}, {x: 0.192681532, y: null}, {x: 0.024029575, y: null}, {x: 0.377916019, y: null}, {x: 0.317327766, y: null}, {x: 0.104707435, y: null}, {x: 0.05929063, y: null}, {x: 0.0, y: null}, {x: 0.195714286, y: null}, {x: 0.159755269, y: null}, {x: 0.094654788, y: null}, {x: 0.126545455, y: null}, {x: 0.166768479, y: null}, {x: 0.269230769, y: null}, {x: 0.16741501, y: null}, {x: 0.087077351, y: null}, {x: 0.192893401, y: null}, {x: 0.099638616, y: null}, {x: 0.006319115, y: null}, {x: 0.091381872, y: null}, {x: 0.121767241, y: null}, {x: 0.201141227, y: null}, {x: 0.047643183, y: null}, {x: 0.234803922, y: null}, {x: 0.10952381, y: null}, {x: 0.24623803, y: null}, {x: 0.195972115, y: null}, {x: 0.178913738, y: null}, {x: 0.08, y: null}, {x: 0.168395062, y: null}, {x: 0.073867163, y: null}, {x: 0.438853131, y: null}, {x: 0.142307692, y: 385.927118}, {x: 0.172337278, y: 2.816}, {x: 0.150650441, y: null}, {x: 0.086673889, y: null}, {x: 0.054512139, y: null}, {x: 0.007142857, y: null}, {x: 0.218031279, y: null}, {x: 0.089412811, y: null}, {x: 0.097799511, y: null}, {x: 0.065399665, y: null}, {x: 0.020733652, y: null}, {x: 0.019163763, y: null}, {x: 0.092819615, y: null}, {x: 0.237449118, y: null}, {x: 0.338966203, y: null}, {x: 0.141304348, y: null}, {x: 0.096727796, y: null}, {x: 0.313445378, y: null}, {x: 0.202038104, y: null}, {x: 0.179930796, y: null}, {x: 0.031832298, y: null}, {x: 0.092133239, y: null}, {x: 0.089820359, y: null}, {x: 0.094003241, y: null}, {x: 0.092709984, y: null}, {x: 0.064261556, y: null}, {x: 0.217230008, y: null}, {x: 0.176865046, y: null}, {x: 0.089154412, y: null}, {x: 0.184771033, y: null}, {x: 0.02188392, y: null}, {x: 0.075613276, y: null}, {x: 0.039819005, y: null}, {x: 0.170632618, y: null}, {x: 0.242459397, y: null}, {x: 0.212140175, y: null}, {x: 0.218994413, y: null}, {x: 0.126482213, y: null}, {x: 0.176139273, y: null}, {x: 0.167036216, y: null}, {x: 0.227786753, y: null}, {x: 0.194784026, y: null}, {x: 0.209767814, y: null}, {x: 0.148795649, y: null}, {x: 0.119930475, y: null}, {x: 0.281481482, y: null}, {x: 0.245859873, y: null}, {x: 0.056631893, y: null}, {x: 0.547680412, y: null}, {x: 0.62985782, y: null}, {x: 0.056737589, y: null}, {x: 0.14129625, y: null}, {x: 0.186666667, y: null}, {x: 0.063291139, y: null}, {x: 0.217636023, y: null}, {x: 0.142926829, y: null}, {x: 0.099309612, y: null}, {x: 0.192756292, y: null}, {x: 0.086353123, y: null}, {x: 0.236290682, y: null}, {x: 0.692188708, y: null}, {x: 0.693947144, y: null}, {x: 0.461373391, y: null}, {x: 0.410230692, y: null}, {x: 0.134615385, y: null}, {x: 0.451674037, y: null}, {x: 0.466422466, y: null}, {x: 0.664900662, y: null}, {x: 0.843210803, y: null}, {x: 0.371597633, y: null}, {x: 0.60106383, y: null}, {x: 0.296181631, y: null}, {x: 0.604166667, y: null}, {x: 0.535080956, y: null}, {x: 0.422025724, y: null}, {x: 0.007656968, y: null}, {x: 0.119390347, y: null}, {x: 0.107080164, y: null}, {x: 0.452788515, y: null}, {x: 0.346938776, y: null}, {x: 0.0, y: null}, {x: 0.114676486, y: null}, {x: 0.124465812, y: null}, {x: 0.162243151, y: null}, {x: 0.203240059, y: null}, {x: 0.149584488, y: null}, {x: 0.194214876, y: null}, {x: 0.165613718, y: null}, {x: 0.224386724, y: null}, {x: 0.308252427, y: null}, {x: 0.131256563, y: null}, {x: 0.226162333, y: null}, {x: 0.0, y: null}, {x: 0.230593607, y: null}, {x: 0.103011094, y: null}, {x: 0.186766275, y: null}, {x: 0.335589942, y: null}, {x: 0.0, y: null}, {x: 0.047265361, y: 0.45}, {x: 0.209090909, y: null}, {x: 0.139902676, y: null}, {x: 0.058823529, y: null}, {x: 0.145431945, y: null}, {x: 0.167484997, y: null}, {x: 0.332688588, y: null}, {x: 0.175675676, y: null}, {x: 0.357366771, y: null}, {x: 0.222222222, y: null}, {x: 0.31292876, y: null}, {x: 0.045454545, y: null}, {x: 0.896153846, y: null}, {x: 0.165371809, y: null}, {x: 0.206546796, y: null}, {x: 0.16856492, y: null}, {x: 0.456357759, y: null}, {x: 0.0, y: null}, {x: 0.344452502, y: null}, {x: 0.105373343, y: null}, {x: 0.32618683, y: null}, {x: 0.317860747, y: null}, {x: 0.239130435, y: null}, {x: 0.190134529, y: null}, {x: 0.334490741, y: null}, {x: 0.187900356, y: null}, {x: 0.214686385, y: 5e-05}, {x: 0.295597484, y: null}, {x: 0.288693743, y: null}, {x: 0.335766423, y: null}, {x: 0.069602273, y: null}, {x: 0.042776999, y: null}, {x: 0.094623656, y: null}, {x: 0.119918699, y: null}, {x: 0.294010889, y: null}, {x: 0.216639209, y: null}, {x: 0.143867925, y: null}, {x: 0.600825878, y: null}, {x: 0.440881764, y: null}, {x: 0.131931166, y: null}, {x: 0.067490494, y: null}, {x: 0.090606262, y: null}, {x: 0.109448819, y: null}, {x: 0.270613108, y: null}, {x: 0.320610687, y: null}, {x: 0.098654709, y: null}, {x: 0.096551724, y: null}, {x: 0.216936251, y: null}, {x: 0.139312977, y: null}, {x: 0.111520737, y: null}, {x: 0.298219585, y: null}, {x: 0.25948718, y: null}, {x: 0.156905278, y: null}, {x: 0.169597277, y: null}, {x: 0.075660243, y: null}, {x: 0.090005233, y: null}, {x: 0.063157895, y: null}, {x: 0.255225523, y: null}, {x: 0.125, y: null}, {x: 0.106425703, y: null}, {x: 0.158339198, y: null}, {x: 0.372469636, y: null}, {x: 0.613154961, y: null}, {x: 0.334821429, y: null}, {x: 0.517326733, y: null}, {x: 0.44867855, y: null}, {x: 0.031698113, y: null}, {x: 0.1796875, y: null}, {x: 0.288334556, y: 2479.88946}, {x: 0.680131004, y: null}, {x: 0.377899045, y: null}, {x: 0.224024328, y: null}, {x: 0.569614069, y: null}, {x: 0.332887701, y: null}, {x: 0.256934307, y: null}, {x: 0.175418994, y: null}, {x: 0.710470086, y: null}, {x: 0.433684211, y: 482.90002}, {x: 0.566246057, y: null}, {x: 0.479349187, y: 67.833}, {x: 0.478670013, y: null}, {x: 0.317446809, y: null}, {x: 0.348593228, y: null}, {x: 0.147346072, y: null}, {x: 0.252354049, y: null}, {x: 0.09593777, y: null}, {x: 0.420918367, y: null}, {x: 0.228438228, y: null}, {x: 0.244226732, y: null}, {x: 0.48549884, y: null}, {x: 0.486111111, y: 55.29}, {x: 0.378483835, y: null}, {x: 0.520729685, y: null}, {x: 0.336483932, y: null}, {x: 0.646521434, y: null}, {x: 0.407643312, y: null}, {x: 0.432835821, y: null}, {x: 0.186453023, y: null}, {x: 0.346908734, y: null}, {x: 0.049135578, y: null}, {x: 0.025723473, y: null}, {x: 0.35114079, y: null}, {x: 0.242244224, y: null}, {x: 0.19873817, y: null}, {x: 0.187434002, y: null}, {x: 0.229894395, y: null}, {x: 0.04886562, y: null}, {x: 0.435246318, y: null}, {x: 0.065433855, y: null}, {x: 0.42882405, y: null}, {x: 0.165986395, y: null}, {x: 0.171401515, y: null}, {x: 0.181990521, y: null}, {x: 0.677419355, y: null}, {x: 0.276346604, y: null}, {x: 0.462096243, y: null}, {x: 0.506582412, y: null}, {x: 0.487410072, y: null}, {x: 0.651711027, y: null}, {x: 0.467996675, y: null}, {x: 0.465584779, y: null}, {x: 0.481886535, y: null}, {x: 0.174825175, y: null}, {x: 0.540901503, y: null}, {x: 0.191395961, y: null}, {x: 0.343832021, y: null}, {x: 0.293144208, y: null}, {x: 0.348008386, y: null}, {x: 0.175074184, y: null}, {x: 0.124301676, y: null}, {x: 0.111923253, y: null}, {x: 0.788161994, y: 199.24}, {x: 0.40459364, y: null}, {x: 0.160842294, y: 654.51638}, {x: 0.091078067, y: null}, {x: 0.335769981, y: null}, {x: 0.265109193, y: null}, {x: 0.0, y: null}, {x: 0.07016129, y: null}, {x: 0.208350223, y: null}, {x: 0.048558897, y: null}, {x: 0.044928523, y: null}, {x: 0.095512083, y: null}, {x: 0.1201373, y: null}, {x: 0.137418756, y: null}, {x: 0.013313609, y: null}, {x: 0.072332731, y: null}, {x: 0.186107965, y: null}, {x: 0.185592619, y: null}, {x: 0.311759344, y: null}, {x: 0.163699024, y: null}, {x: 0.200447094, y: null}, {x: 0.053875756, y: null}, {x: 0.214727723, y: null}, {x: 0.262099777, y: null}, {x: 0.077572965, y: null}, {x: 0.215111478, y: null}, {x: 0.115982242, y: null}, {x: 0.138235294, y: null}, {x: 0.016422548, y: null}, {x: 0.155236908, y: null}, {x: 0.292901716, y: null}, {x: 0.048076923, y: null}, {x: 0.048710602, y: null}, {x: 0.066005472, y: null}, {x: 0.041421947, y: null}, {x: 0.218197499, y: null}, {x: 0.103708791, y: null}, {x: 0.082482993, y: null}, {x: 0.060178655, y: null}, {x: 0.08688172, y: null}, {x: 0.327169275, y: null}, {x: 0.008540925, y: null}, {x: 0.034736842, y: null}, {x: 0.079427083, y: null}, {x: 0.141935484, y: null}, {x: 0.017988553, y: null}, {x: 0.070175439, y: null}, {x: 0.050531915, y: null}, {x: 0.014973958, y: null}, {x: 0.070038911, y: null}, {x: 0.051712559, y: null}, {x: 0.071076707, y: null}, {x: 0.113802817, y: null}, {x: 0.054874489, y: null}, {x: 0.011641444, y: null}, {x: 0.036539896, y: null}, {x: 0.171572146, y: null}, {x: 0.017011834, y: null}, {x: 0.048372093, y: null}, {x: 0.01187447, y: null}, {x: 0.089381207, y: null}, {x: 0.082481254, y: null}, {x: 0.06993865, y: null}, {x: 0.214519294, y: null}, {x: 0.071005917, y: null}, {x: 0.268896321, y: null}, {x: 0.089883112, y: null}, {x: 0.044703596, y: null}, {x: 0.060674157, y: null}, {x: 0.05190678, y: null}, {x: 0.025806452, y: null}, {x: 0.051771117, y: null}, {x: 0.078457447, y: null}, {x: 0.0, y: null}, {x: 0.237670514, y: 396.4304}, {x: 0.135699374, y: null}, {x: 0.039623909, y: null}, {x: 0.564759036, y: null}, {x: 0.176814012, y: null}, {x: 0.0, y: null}, {x: 0.214733542, y: null}, {x: 0.097073519, y: null}, {x: 0.05943331, y: null}, {x: 0.083663086, y: null}, {x: 0.17235637, y: null}, {x: 0.054300817, y: null}, {x: 0.082160945, y: null}, {x: 0.124620061, y: null}, {x: 0.076555024, y: null}, {x: 0.039936102, y: null}, {x: 0.101486749, y: null}, {x: 0.035288012, y: null}, {x: 0.01529052, y: null}, {x: 0.032444959, y: null}, {x: 0.11208893, y: null}, {x: 0.109375, y: null}, {x: 0.147945206, y: null}, {x: 0.037681159, y: null}, {x: 0.124303233, y: null}, {x: 0.256038647, y: null}, {x: 0.0, y: null}, {x: 0.120833333, y: null}, {x: 0.140155729, y: null}, {x: 0.146167558, y: null}, {x: 0.094582975, y: null}, {x: 0.0, y: null}, {x: 0.041934582, y: null}, {x: 0.117152104, y: null}, {x: 0.0, y: null}, {x: 0.043557833, y: null}, {x: 0.0, y: null}, {x: 0.092467851, y: null}, {x: 0.03052422, y: null}, {x: 0.195945946, y: null}, {x: 0.01038961, y: null}, {x: 0.151055409, y: null}, {x: 0.068666667, y: null}, {x: 0.0, y: null}, {x: 0.061793215, y: null}, {x: 0.137690095, y: null}, {x: 0.031413613, y: null}, {x: 0.096164854, y: null}, {x: 0.062413315, y: null}, {x: 0.0, y: null}, {x: 0.083769634, y: null}, {x: 0.305785124, y: null}, {x: 0.36154289, y: null}, {x: 0.017492711, y: null}, {x: 0.023110556, y: null}, {x: 0.299554114, y: null}, {x: 0.225231911, y: null}, {x: 0.566835871, y: null}, {x: 0.113970588, y: null}, {x: 0.449060336, y: null}, {x: 0.443462075, y: null}, {x: 0.36322532, y: null}, {x: 0.150716332, y: null}, {x: 0.033933162, y: null}, {x: 0.174543753, y: null}, {x: 0.163619744, y: null}, {x: 0.315756824, y: null}, {x: 0.103532278, y: null}, {x: 0.236973948, y: null}, {x: 0.146926537, y: null}, {x: 0.093931837, y: null}, {x: 0.112177565, y: null}, {x: 0.058638743, y: null}, {x: 0.122053872, y: null}, {x: 0.136310223, y: null}, {x: 0.034285714, y: null}, {x: 0.073654391, y: null}, {x: 0.066193853, y: null}, {x: 0.128362798, y: null}, {x: 0.177130045, y: null}, {x: 0.085947572, y: null}, {x: 0.34814364, y: null}, {x: 0.155061019, y: null}, {x: 0.285795455, y: null}, {x: 0.250814332, y: null}, {x: 0.085766423, y: null}, {x: 0.105163728, y: null}, {x: 0.035366932, y: null}, {x: 0.084161696, y: null}, {x: 0.015397776, y: null}, {x: 0.286223278, y: null}, {x: 0.0, y: null}, {x: 0.032552827, y: null}, {x: 0.039562924, y: null}, {x: 0.150084317, y: null}, {x: 0.188761593, y: null}, {x: 0.0, y: null}, {x: 0.103028194, y: null}, {x: 0.320325203, y: null}, {x: 0.069166667, y: null}, {x: 0.042932629, y: null}, {x: 0.042553191, y: null}, {x: 0.096153846, y: null}, {x: 0.184210526, y: null}, {x: 0.124748491, y: null}, {x: 0.168241966, y: null}, {x: 0.037848606, y: null}, {x: 0.011158798, y: null}, {x: 0.074758135, y: null}, {x: 0.109271523, y: null}, {x: 0.021060276, y: null}, {x: 0.280726257, y: null}, {x: 0.098263027, y: null}, {x: 0.044251627, y: null}, {x: 0.065446478, y: null}, {x: 0.158808933, y: null}, {x: 0.159280668, y: null}, {x: 0.189856066, y: null}, {x: 0.098351336, y: null}, {x: 0.347411444, y: null}, {x: 0.136861314, y: null}, {x: 0.04068078, y: null}, {x: 0.072327044, y: null}, {x: 0.084288604, y: null}, {x: 0.042704626, y: null}, {x: 0.024280911, y: null}, {x: 0.035844916, y: null}, {x: 0.193867458, y: null}, {x: 0.017760058, y: null}, {x: 0.068499759, y: null}, {x: 0.205967276, y: null}, {x: 0.141923436, y: null}, {x: 0.016100179, y: null}, {x: 0.088701685, y: null}, {x: 0.01684002, y: null}, {x: 0.038173142, y: null}, {x: 0.035057717, y: null}, {x: 0.063985375, y: null}, {x: 0.071885585, y: null}, {x: 0.028510335, y: null}, {x: 0.055236729, y: null}, {x: 0.265200518, y: null}, {x: 0.13353566, y: null}, {x: 0.046861565, y: null}, {x: 0.0, y: null}, {x: 0.023393984, y: null}, {x: 0.049939099, y: null}, {x: 0.106945298, y: null}, {x: 0.083561644, y: null}, {x: 0.112337406, y: null}, {x: 0.139705882, y: null}, {x: 0.252894859, y: null}, {x: 0.164410058, y: null}, {x: 0.012004175, y: null}, {x: 0.171943712, y: null}, {x: 0.132789318, y: null}, {x: 0.143104443, y: null}, {x: 0.0, y: null}, {x: 0.157161515, y: null}, {x: 0.094700261, y: null}, {x: 0.241590214, y: null}, {x: 0.286516854, y: null}, {x: 0.169590643, y: null}, {x: 0.004437273, y: null}, {x: 0.1014772, y: null}, {x: 0.188346884, y: null}, {x: 0.061985472, y: null}, {x: 0.059380379, y: null}, {x: 0.34973262, y: null}, {x: 0.13239645, y: null}, {x: 0.144636015, y: null}, {x: 0.249277457, y: null}, {x: 0.165124555, y: null}, {x: 0.159560724, y: null}, {x: 0.039032006, y: null}, {x: 0.072839506, y: null}, {x: 0.217518248, y: null}, {x: 0.030758226, y: null}, {x: 0.073813708, y: null}, {x: 0.120250686, y: null}, {x: 0.272456576, y: null}, {x: 0.211159211, y: null}, {x: 0.133167907, y: null}, {x: 0.218879056, y: null}, {x: 0.296296296, y: null}, {x: 0.059376837, y: null}, {x: 0.047474133, y: null}, {x: 0.176684882, y: null}, {x: 0.124452235, y: null}, {x: 0.069010417, y: null}, {x: 0.036553525, y: null}, {x: 0.086799277, y: null}, {x: 0.111235955, y: null}, {x: 0.105882353, y: null}, {x: 0.037931034, y: null}, {x: 0.266666667, y: null}, {x: 0.0978957, y: null}, {x: 0.019764706, y: null}, {x: 0.04842615, y: null}, {x: 0.100762527, y: null}, {x: 0.060553633, y: null}, {x: 0.0, y: null}, {x: 0.077837838, y: null}, {x: 0.169364882, y: null}, {x: 0.072586588, y: null}, {x: 0.067017083, y: null}, {x: 0.11722488, y: null}, {x: 0.022646851, y: null}, {x: 0.02853067, y: null}, {x: 0.058122206, y: null}, {x: 0.3089701, y: null}, {x: 0.024883359, y: null}, {x: 0.10755814, y: null}, {x: 0.101822079, y: null}, {x: 0.314445331, y: null}, {x: 0.084803256, y: null}, {x: 0.195767196, y: null}, {x: 0.12605042, y: null}, {x: 0.097028502, y: null}, {x: 0.099518459, y: null}, {x: 0.169680111, y: null}, {x: 0.179425837, y: null}, {x: 0.065920398, y: null}, {x: 0.06924254, y: null}, {x: 0.05941704, y: null}, {x: 0.073232323, y: null}, {x: 0.078976035, y: null}, {x: 0.199346405, y: null}, {x: 0.169164882, y: null}, {x: 0.088582677, y: null}, {x: 0.072837633, y: null}, {x: 0.110384895, y: null}, {x: 0.154066986, y: null}, {x: 0.215460526, y: null}, {x: 0.013986014, y: null}, {x: 0.012393493, y: null}, {x: 0.135429262, y: null}, {x: 0.039334342, y: null}, {x: 0.098265896, y: null}, {x: 0.04856787, y: null}, {x: 0.0, y: null}, {x: 0.050579557, y: null}, {x: 0.20630861, y: null}, {x: 0.150159744, y: null}, {x: 0.0, y: null}, {x: 0.035573123, y: null}, {x: 0.084383562, y: null}, {x: 0.213011543, y: null}, {x: 0.196338384, y: null}, {x: 0.052927928, y: null}, {x: 0.235344828, y: null}, {x: 0.180887372, y: null}, {x: 0.028873239, y: null}, {x: 0.029678483, y: null}, {x: 0.188034188, y: null}, {x: 0.043365696, y: null}, {x: 0.125471972, y: null}, {x: 0.255681818, y: null}, {x: 0.205063291, y: null}, {x: 0.04587156, y: null}, {x: 0.21971831, y: null}, {x: 0.012488849, y: null}, {x: 0.152046784, y: null}, {x: 0.039962388, y: null}, {x: 0.248784441, y: null}, {x: 0.067865904, y: null}, {x: 0.086419753, y: null}, {x: 0.098591549, y: null}, {x: 0.11284869, y: null}, {x: 0.177944862, y: null}, {x: 0.014126394, y: null}, {x: 0.051237766, y: null}, {x: 0.066489362, y: null}, {x: 0.289877301, y: null}, {x: 0.027602524, y: null}, {x: 0.0, y: null}, {x: 0.165260197, y: null}, {x: 0.156378601, y: null}, {x: 0.056112224, y: null}, {x: 0.071163825, y: null}, {x: 0.0, y: null}, {x: 0.044663573, y: null}, {x: 0.012202954, y: null}, {x: 0.050034746, y: null}, {x: 0.010972933, y: null}, {x: 0.282968854, y: null}, {x: 0.214654283, y: null}, {x: 0.009409752, y: null}, {x: 0.422590068, y: null}, {x: 0.200450451, y: null}, {x: 0.062365591, y: null}, {x: 0.032436709, y: null}, {x: 0.037037037, y: null}, {x: 0.118990385, y: null}, {x: 0.092137592, y: null}, {x: 0.057080132, y: null}, {x: 0.050874404, y: null}, {x: 0.046431642, y: null}, {x: 0.410755149, y: null}, {x: 0.073604061, y: null}, {x: 0.257575758, y: null}, {x: 0.135167464, y: null}, {x: 0.26074896, y: null}, {x: 0.130530974, y: null}, {x: 0.549778761, y: null}, {x: 0.100609756, y: null}, {x: 0.345813479, y: null}, {x: 0.109311741, y: null}, {x: 0.07133758, y: null}, {x: 0.426791277, y: null}, {x: 0.31678487, y: null}, {x: 0.20610687, y: null}, {x: 0.233018868, y: null}, {x: 0.085732984, y: null}, {x: 0.125, y: null}, {x: 0.285276074, y: null}, {x: 0.340678976, y: null}, {x: 0.361038961, y: null}, {x: 0.355791962, y: null}, {x: 0.0, y: null}, {x: 0.058962264, y: 68.97}, {x: 0.079710145, y: null}, {x: 0.279891304, y: null}, {x: 0.154255319, y: null}, {x: 0.259044863, y: null}, {x: 0.0, y: null}, {x: 0.023121387, y: null}, {x: 0.047530289, y: null}, {x: 0.148854962, y: null}, {x: 0.376888218, y: null}, {x: 0.310756972, y: null}, {x: 0.235543018, y: null}, {x: 0.103947368, y: null}, {x: 0.366492147, y: null}, {x: 0.131386861, y: null}, {x: 0.016248154, y: null}, {x: 0.03442029, y: null}, {x: 0.022192334, y: null}, {x: 0.249895529, y: null}, {x: 0.10626186, y: null}, {x: 0.057943925, y: null}, {x: 0.232352941, y: null}, {x: 0.222172553, y: null}, {x: 0.390946502, y: null}, {x: 0.030192132, y: null}, {x: 0.430502975, y: null}, {x: 0.288270378, y: null}, {x: 0.096774194, y: null}, {x: 0.395579268, y: null}, {x: 0.476152623, y: null}, {x: 0.051526718, y: null}, {x: 0.152051488, y: null}, {x: 0.09478022, y: null}, {x: 0.499222395, y: null}, {x: 0.355847688, y: null}, {x: 0.517611026, y: null}, {x: 0.492407809, y: null}, {x: 0.229799852, y: null}, {x: 0.233050848, y: null}, {x: 0.581833061, y: null}, {x: 0.353284672, y: null}, {x: 0.310491493, y: null}, {x: 0.422346369, y: null}, {x: 0.457024793, y: null}, {x: 0.298837209, y: null}, {x: 0.096813725, y: null}, {x: 0.198748044, y: null}, {x: 0.351602024, y: null}, {x: 0.457702582, y: null}, {x: 0.417251755, y: null}, {x: 0.140414041, y: null}, {x: 0.224631396, y: null}, {x: 0.275332651, y: null}, {x: 0.422459893, y: null}, {x: 0.279020979, y: null}, {x: 0.0, y: null}, {x: 0.291012839, y: null}, {x: 0.650949574, y: null}, {x: 0.272113943, y: null}, {x: 0.104105572, y: null}, {x: 0.303286385, y: null}, {x: 0.299932751, y: null}, {x: 0.441834452, y: null}, {x: 0.389489954, y: null}, {x: 0.70591614, y: null}, {x: 0.528669725, y: null}, {x: 0.2, y: null}, {x: 0.214854111, y: null}, {x: 0.292115712, y: null}, {x: 0.215087719, y: null}, {x: 0.136595311, y: null}, {x: 0.414210129, y: null}, {x: 0.532400589, y: null}, {x: 0.258293839, y: null}, {x: 0.448903157, y: null}, {x: 0.09164149, y: null}, {x: 0.589052997, y: null}, {x: 0.284609979, y: null}, {x: 0.14197052, y: null}, {x: 0.307692308, y: null}, {x: 0.464686998, y: null}, {x: 0.229411765, y: null}, {x: 0.239242685, y: null}, {x: 0.513846154, y: null}, {x: 0.284114053, y: null}, {x: 0.24434942, y: null}, {x: 0.3388735, y: null}, {x: 0.180787192, y: null}, {x: 0.41037037, y: null}, {x: 0.555045872, y: null}, {x: 0.385957447, y: null}, {x: 0.251644737, y: null}, {x: 0.343949045, y: null}, {x: 0.319240196, y: null}, {x: 0.102721088, y: null}, {x: 0.682885906, y: null}, {x: 0.144089733, y: null}, {x: 0.386214442, y: null}, {x: 0.543369475, y: null}, {x: 0.881203008, y: null}, {x: 0.0, y: null}, {x: 0.295935648, y: null}, {x: 0.373917473, y: null}, {x: 0.138236828, y: null}, {x: 0.502119927, y: null}, {x: 0.12755102, y: null}, {x: 0.30420712, y: null}, {x: 0.133250311, y: null}, {x: 0.203099511, y: null}, {x: 0.086341118, y: null}, {x: 0.090977444, y: null}, {x: 0.538135593, y: null}, {x: 0.095179988, y: null}, {x: 0.219117051, y: null}, {x: 0.225886233, y: null}, {x: 0.08997955, y: null}, {x: 0.029850746, y: null}, {x: 0.098765432, y: null}, {x: 0.117998913, y: null}, {x: 0.095194923, y: null}, {x: 0.205791107, y: null}, {x: 0.127790608, y: null}, {x: 0.040909091, y: null}, {x: 0.202422145, y: null}, {x: 0.038376384, y: null}, {x: 0.194357367, y: null}, {x: 0.360132159, y: null}, {x: 0.150326797, y: null}, {x: 0.162921348, y: null}, {x: 0.136363636, y: null}, {x: 0.0, y: null}, {x: 0.261682243, y: null}, {x: 0.484992101, y: null}, {x: 0.105263158, y: null}, {x: 0.045929019, y: null}, {x: 0.256126482, y: null}, {x: 0.088764045, y: null}, {x: 0.272727273, y: null}, {x: 0.565180824, y: null}, {x: 0.758920801, y: null}, {x: 0.171249018, y: null}, {x: 0.047029703, y: null}, {x: 0.12364946, y: null}, {x: 0.200736648, y: null}, {x: 0.0514198, y: null}, {x: 0.18784972, y: null}, {x: 0.089861751, y: null}, {x: 0.076363636, y: null}, {x: 0.068148148, y: null}, {x: 0.181021898, y: null}, {x: 0.209677419, y: null}, {x: 0.172205438, y: null}, {x: 0.218660969, y: null}, {x: 0.165700083, y: null}, {x: 0.126609442, y: null}, {x: 0.066852368, y: null}, {x: 0.173633441, y: null}, {x: 0.185148515, y: null}, {x: 0.170008718, y: null}, {x: 0.121142857, y: null}, {x: 0.281847134, y: null}, {x: 0.113562622, y: null}, {x: 0.155193993, y: null}, {x: 0.18997107, y: null}, {x: 0.473941368, y: null}, {x: 0.097812098, y: null}, {x: 0.201520913, y: null}, {x: 0.097959184, y: null}, {x: 0.355411955, y: null}, {x: 0.37145749, y: null}, {x: 0.329359165, y: null}, {x: 0.165422886, y: null}, {x: 0.548944338, y: null}, {x: 0.262813522, y: null}, {x: 0.227533461, y: null}, {x: 0.208955224, y: null}, {x: 0.119318182, y: null}, {x: 0.291841884, y: null}, {x: 0.754601227, y: null}, {x: 0.127245509, y: null}, {x: 0.280445969, y: null}, {x: 0.158119658, y: null}, {x: 0.111111111, y: 2.8}, {x: 0.159513133, y: null}, {x: 0.359756098, y: null}, {x: 0.215625, y: null}, {x: 0.12875121, y: null}, {x: 0.082208589, y: null}, {x: 0.425660793, y: null}, {x: 0.233282675, y: null}, {x: 0.087452471, y: null}, {x: 0.067776457, y: null}, {x: 0.311388755, y: null}, {x: 0.434116445, y: null}, {x: 0.432872254, y: null}, {x: 0.11827957, y: null}, {x: 0.180433039, y: null}, {x: 0.069421488, y: null}, {x: 0.175474814, y: null}, {x: 0.351669941, y: null}, {x: 0.450753187, y: null}, {x: 0.241203704, y: null}, {x: 0.259615385, y: null}, {x: 0.0, y: null}, {x: 1.0, y: null}, {x: 0.184190902, y: null}, {x: 0.37899918, y: null}, {x: 0.041082164, y: null}, {x: 0.131004367, y: null}, {x: 0.131100479, y: null}, {x: 0.182320442, y: null}, {x: 0.08910162, y: null}, {x: 0.175876727, y: null}, {x: 0.355685131, y: null}, {x: 0.083606557, y: null}, {x: 0.065263158, y: null}, {x: 0.183634634, y: null}, {x: 0.0, y: null}, {x: 0.269141531, y: null}, {x: 0.249578415, y: null}, {x: 0.19035744, y: null}, {x: 0.240200167, y: null}, {x: 0.071535022, y: null}, {x: 0.0945758, y: null}, {x: 0.399122807, y: null}, {x: 0.385391924, y: null}, {x: 0.666666667, y: null}, {x: 0.072519084, y: null}, {x: 0.346875, y: null}, {x: 0.419450631, y: null}, {x: 0.116094987, y: null}, {x: 0.035558781, y: 1.38}, {x: 0.004302926, y: null}, {x: 0.041910331, y: 3.71}, {x: 0.087529976, y: null}, {x: 0.207612457, y: null}, {x: 0.0653789, y: null}, {x: 0.103906899, y: null}, {x: 0.119777159, y: null}, {x: 0.03666997, y: null}, {x: 0.186423506, y: null}, {x: 0.024564184, y: null}, {x: 0.0, y: null}, {x: 0.099805574, y: null}, {x: 0.153669725, y: null}, {x: 0.038123167, y: null}, {x: 0.193960511, y: null}, {x: 0.083261058, y: null}, {x: 0.102013423, y: null}, {x: 0.180658874, y: null}, {x: 0.093772894, y: null}, {x: 0.0, y: null}, {x: 0.153473344, y: null}, {x: 0.152453271, y: null}, {x: 0.1544, y: null}, {x: 0.184054283, y: null}, {x: 0.682846371, y: null}, {x: 0.304635762, y: null}, {x: 0.210261569, y: null}, {x: 0.128410915, y: 1.975}, {x: 0.137285491, y: null}, {x: 0.070357555, y: null}, {x: 0.120289107, y: null}, {x: 0.01174743, y: 45.306}, {x: 0.134897361, y: null}, {x: 0.146017699, y: null}, {x: 0.026455026, y: null}, {x: 0.028528529, y: null}, {x: 0.087824351, y: null}, {x: 0.12605042, y: null}, {x: 0.059541985, y: null}, {x: 0.209051724, y: null}, {x: 0.011152416, y: null}, {x: 0.070773263, y: null}, {x: 0.03030303, y: null}, {x: 0.053941909, y: null}, {x: 0.021212121, y: null}, {x: 0.061271676, y: null}, {x: 0.0, y: null}, {x: 0.045107564, y: null}, {x: 0.307652799, y: null}, {x: 0.012578616, y: null}, {x: 0.081132075, y: null}, {x: 0.156886228, y: null}, {x: 0.07037037, y: null}, {x: 0.103202847, y: null}, {x: 0.00619195, y: null}, {x: 0.141618497, y: null}, {x: 0.167250438, y: null}, {x: 0.11352657, y: null}, {x: 0.257471264, y: null}, {x: 0.034907598, y: null}, {x: 0.005420054, y: null}, {x: 0.20573108, y: 12.033039}, {x: 0.09609375, y: null}, {x: 0.114934114, y: null}, {x: 0.472627737, y: null}, {x: 0.192743764, y: null}, {x: 0.032321254, y: null}, {x: 0.223445239, y: null}, {x: 0.0, y: null}, {x: 0.017316017, y: null}, {x: 0.050623053, y: null}, {x: 0.011483254, y: null}, {x: 0.019630485, y: null}, {x: 0.207908163, y: null}, {x: 0.036238981, y: null}, {x: 0.104538501, y: null}, {x: 0.051960784, y: null}, {x: 0.012074643, y: null}, {x: 0.044698545, y: null}, {x: 0.040328093, y: null}, {x: 0.0, y: null}, {x: 0.237944664, y: null}, {x: 0.107142857, y: null}, {x: 0.087142857, y: null}, {x: 0.072354212, y: null}, {x: 0.072902338, y: null}, {x: 0.045618247, y: null}, {x: 0.153061225, y: null}, {x: 0.128964059, y: null}, {x: 0.07087959, y: null}, {x: 0.070737606, y: null}, {x: 0.158986175, y: null}, {x: 0.17877095, y: null}, {x: 0.155731225, y: null}, {x: 0.138794084, y: null}, {x: 0.05618964, y: null}, {x: 0.198645598, y: null}, {x: 0.034943474, y: null}, {x: 0.191176471, y: null}, {x: 0.048370137, y: null}, {x: 0.033561644, y: null}, {x: 0.012101911, y: null}, {x: 0.123809524, y: null}, {x: 0.147751606, y: null}, {x: 0.007115948, y: null}, {x: 0.053266332, y: null}, {x: 0.279792746, y: null}, {x: 0.205009276, y: null}, {x: 0.087719298, y: null}, {x: 0.090163934, y: null}, {x: 0.036697248, y: null}, {x: 0.022516083, y: null}, {x: 0.089385475, y: null}, {x: 0.018402342, y: null}, {x: 0.144827586, y: null}, {x: 0.062626263, y: null}, {x: 0.023116438, y: null}, {x: 0.13452381, y: null}, {x: 0.020833333, y: null}, {x: 0.01981982, y: null}, {x: 0.026666667, y: null}, {x: 0.014492754, y: null}, {x: 0.034183397, y: null}, {x: 0.102868447, y: null}, {x: 0.033722438, y: null}, {x: 0.084241104, y: null}, {x: 0.0, y: null}, {x: 0.202939514, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075630252, y: null}, {x: 0.067515924, y: null}, {x: 0.038393175, y: null}, {x: 0.08200213, y: null}, {x: 0.06202209, y: null}, {x: 0.0, y: null}, {x: 0.20886501, y: null}, {x: 0.218677494, y: null}, {x: 0.218516675, y: null}, {x: 0.33029382, y: null}, {x: 0.168469861, y: null}, {x: 0.096880131, y: null}, {x: 0.002998501, y: null}, {x: 0.03898917, y: null}, {x: 0.219183845, y: null}, {x: 0.231752797, y: null}, {x: 0.038461538, y: null}, {x: 0.024309392, y: null}, {x: 0.082075472, y: null}, {x: 0.036119711, y: null}, {x: 0.001144165, y: null}, {x: 0.114229444, y: null}, {x: 0.04735062, y: null}, {x: 0.0, y: null}, {x: 0.259927798, y: null}, {x: 0.029292107, y: null}, {x: 0.033242877, y: null}, {x: 0.057170543, y: null}, {x: 0.067164179, y: null}, {x: 0.047220107, y: null}, {x: 0.238165681, y: null}, {x: 0.050544323, y: null}, {x: 0.062787136, y: null}, {x: 0.101962662, y: null}, {x: 0.0, y: null}, {x: 0.102057959, y: null}, {x: 0.050765512, y: null}, {x: 0.032311978, y: 0.0117}, {x: 0.101750547, y: null}, {x: 0.405918728, y: null}, {x: 0.086978637, y: null}, {x: 0.130858186, y: null}, {x: 0.239146992, y: null}, {x: 0.151730257, y: null}, {x: 0.0, y: null}, {x: 0.166890983, y: null}, {x: 0.102122016, y: null}, {x: 0.0, y: null}, {x: 0.031300594, y: null}, {x: 0.125842697, y: null}, {x: 0.262761506, y: null}, {x: 0.070028011, y: null}, {x: 0.146699267, y: null}, {x: 0.060298103, y: null}, {x: 0.077654517, y: null}, {x: 0.04567079, y: null}, {x: 0.024219591, y: null}, {x: 0.054298643, y: null}, {x: 0.01669627, y: null}, {x: 0.080801105, y: null}, {x: 0.020438499, y: null}, {x: 0.033070866, y: null}, {x: 0.016289593, y: null}, {x: 0.0, y: null}, {x: 0.070053257, y: null}, {x: 0.016736402, y: null}, {x: 0.07063197, y: null}, {x: 0.011594203, y: null}, {x: 0.008591065, y: null}, {x: 0.091247672, y: null}, {x: 0.197934596, y: null}, {x: 0.109926169, y: null}, {x: 0.037513025, y: null}, {x: 0.08190709, y: null}, {x: 0.047421731, y: null}, {x: 0.010978957, y: null}, {x: 0.042944785, y: null}, {x: 0.077790304, y: null}, {x: 0.163052209, y: null}, {x: 0.149558124, y: null}, {x: 0.259504132, y: null}, {x: 0.058685446, y: null}, {x: 0.115890084, y: null}, {x: 0.200308166, y: null}, {x: 0.050587634, y: null}, {x: 0.0, y: null}, {x: 0.185185185, y: null}, {x: 0.07424072, y: null}, {x: 0.071071627, y: null}, {x: 0.170469799, y: null}, {x: 0.353585657, y: null}, {x: 0.136046938, y: null}, {x: 0.144318182, y: null}, {x: 0.223736969, y: null}, {x: 0.080962801, y: null}, {x: 0.045840407, y: null}, {x: 0.281629116, y: null}, {x: 0.300666032, y: null}, {x: 0.3, y: null}, {x: 0.392881128, y: null}, {x: 0.358374384, y: null}, {x: 0.471659919, y: null}, {x: 0.07267645, y: null}, {x: 0.020357804, y: null}, {x: 0.25528914, y: null}, {x: 0.0, y: null}, {x: 0.154545455, y: null}, {x: 0.28022493, y: null}, {x: 0.190993789, y: null}, {x: 0.328571429, y: null}, {x: 0.032707029, y: null}, {x: 0.017647059, y: null}, {x: 0.336538462, y: null}, {x: 0.202264151, y: null}, {x: 0.058786346, y: null}, {x: 0.290436006, y: null}, {x: 0.32120743, y: null}, {x: 0.4527897, y: null}, {x: 0.154236061, y: null}, {x: 0.044985251, y: null}, {x: 0.164921466, y: null}, {x: 0.145723337, y: null}, {x: 0.212713936, y: null}, {x: 0.020028612, y: null}, {x: 0.02292769, y: null}, {x: 0.290849673, y: null}, {x: 0.230008244, y: null}, {x: 0.249724973, y: null}, {x: 0.352762071, y: null}, {x: 0.295748614, y: null}, {x: 0.244698206, y: null}, {x: 0.72, y: null}, {x: 0.167177914, y: null}, {x: 0.014972777, y: null}, {x: 0.037401575, y: null}, {x: 0.247142857, y: null}, {x: 0.099932019, y: null}, {x: 0.049056604, y: null}, {x: 0.062819203, y: null}, {x: 0.2652124, y: null}, {x: 0.197160883, y: null}, {x: 0.26609658, y: null}, {x: 0.173333333, y: null}, {x: 0.094155844, y: null}, {x: 0.103706625, y: null}, {x: 0.045324154, y: null}, {x: 0.065217391, y: null}, {x: 0.109531773, y: null}, {x: 0.019496855, y: null}, {x: 0.174386921, y: null}, {x: 0.054773083, y: null}, {x: 0.020127119, y: null}, {x: 0.15779982, y: null}, {x: 0.359060403, y: null}, {x: 0.094174757, y: null}, {x: 0.124896609, y: null}, {x: 0.085714286, y: null}, {x: 0.180790961, y: null}, {x: 0.333333333, y: null}, {x: 0.184490306, y: null}, {x: 0.315476191, y: null}, {x: 0.104961832, y: null}, {x: 0.320375335, y: null}, {x: 0.247572816, y: null}, {x: 0.270476191, y: null}, {x: 0.120788303, y: null}, {x: 0.037209302, y: null}, {x: 0.042444822, y: null}, {x: 0.166467066, y: null}, {x: 0.06373117, y: null}, {x: 0.057992565, y: null}, {x: 0.186788155, y: null}, {x: 0.046470063, y: null}, {x: 0.084057971, y: null}, {x: 0.155451226, y: null}, {x: 0.121212121, y: null}, {x: 0.198133525, y: null}, {x: 0.015740741, y: null}, {x: 0.091420534, y: null}, {x: 0.168968318, y: null}, {x: 0.042328042, y: null}, {x: 0.068696331, y: null}, {x: 0.087413856, y: null}, {x: 0.087354409, y: null}, {x: 1.0, y: null}, {x: 0.146989374, y: null}, {x: 0.078674948, y: null}, {x: 0.033033033, y: null}, {x: 0.061157025, y: null}, {x: 0.02425107, y: null}, {x: 0.062926062, y: null}, {x: 0.067114094, y: null}, {x: 0.033764368, y: null}, {x: 0.028612303, y: null}, {x: 0.0, y: null}, {x: 0.195233731, y: null}, {x: 0.330120482, y: null}, {x: 0.037895928, y: null}, {x: 0.066797642, y: null}, {x: 0.21442623, y: null}, {x: 0.111188325, y: null}, {x: 0.070546737, y: null}, {x: 0.109013686, y: null}, {x: 0.073518915, y: null}, {x: 0.12630118, y: null}, {x: 0.010622155, y: null}, {x: 0.093869732, y: null}, {x: 0.013788099, y: null}, {x: 0.046468401, y: null}, {x: 0.020298507, y: null}, {x: 0.031213873, y: null}, {x: 0.041260315, y: null}, {x: 0.0, y: null}, {x: 0.100424328, y: null}, {x: 0.190302398, y: null}, {x: 0.0, y: null}, {x: 0.063829787, y: null}, {x: 0.156100886, y: null}, {x: 0.074766355, y: null}, {x: 0.237333333, y: null}, {x: 0.018018018, y: null}, {x: 0.010905642, y: null}, {x: 0.033281734, y: null}, {x: 0.098579041, y: null}, {x: 0.050299401, y: null}, {x: 0.112725451, y: null}, {x: 0.131414268, y: null}, {x: 0.208482371, y: null}, {x: 0.151515152, y: null}, {x: 0.083388484, y: null}, {x: 0.178507993, y: null}, {x: 0.016260163, y: null}, {x: 0.084337349, y: null}, {x: 0.009546539, y: null}, {x: 0.03626943, y: null}, {x: 0.080407701, y: null}, {x: 0.094430993, y: null}, {x: 0.056603774, y: null}, {x: 0.097067745, y: null}, {x: 0.056534508, y: null}, {x: 0.068230277, y: null}, {x: 0.037328909, y: null}, {x: 0.0, y: null}, {x: 0.106305367, y: null}, {x: 0.216711957, y: null}, {x: 0.018880647, y: null}, {x: 0.09974587, y: null}, {x: 0.246803069, y: null}, {x: 0.157845868, y: null}, {x: 0.164616286, y: null}, {x: 0.03862069, y: null}, {x: 0.161439114, y: null}, {x: 0.383116883, y: null}, {x: 0.0, y: null}, {x: 0.138536585, y: null}, {x: 0.088310038, y: null}, {x: 0.075428571, y: null}, {x: 0.312082574, y: null}, {x: 0.129401409, y: null}, {x: 0.060156931, y: null}, {x: 0.431334623, y: null}, {x: 0.379493223, y: null}, {x: 0.532424812, y: null}, {x: 0.613664987, y: null}, {x: 0.546052632, y: null}, {x: 0.226487524, y: null}, {x: 0.223476298, y: null}, {x: 0.076806084, y: null}, {x: 0.269230769, y: null}, {x: 0.088218554, y: null}, {x: 0.419339842, y: null}, {x: 0.090909091, y: null}, {x: 0.258830342, y: null}, {x: 0.370352251, y: null}, {x: 0.377083333, y: null}, {x: 0.588050315, y: null}, {x: 0.081730769, y: null}, {x: 0.185540627, y: null}, {x: 0.042626728, y: null}, {x: 0.232736573, y: null}, {x: 0.044630404, y: null}, {x: 0.460416667, y: null}, {x: 0.162745098, y: null}, {x: 0.080198723, y: null}, {x: 0.221582734, y: null}, {x: 0.026490066, y: null}, {x: 0.121537396, y: null}, {x: 0.105326877, y: null}, {x: 0.004132231, y: null}, {x: 0.172236504, y: null}, {x: 0.106007067, y: null}, {x: 0.092366902, y: null}, {x: 0.04985889, y: null}, {x: 0.041278834, y: null}, {x: 0.1253406, y: null}, {x: 0.060784314, y: null}, {x: 0.08428246, y: null}, {x: 0.0, y: null}, {x: 0.02293578, y: null}, {x: 0.0, y: null}, {x: 0.059672762, y: null}, {x: 0.171998146, y: null}, {x: 0.0, y: null}, {x: 0.093600764, y: null}, {x: 0.223797781, y: null}, {x: 0.057677903, y: null}, {x: 0.109499637, y: null}, {x: 0.085811966, y: null}, {x: 0.2, y: null}, {x: 0.34620887, y: null}, {x: 0.053123672, y: null}, {x: 0.080193957, y: null}, {x: 0.113268608, y: null}, {x: 0.05888651, y: null}, {x: 0.14829932, y: null}, {x: 0.102339181, y: null}, {x: 0.045673077, y: null}, {x: 0.037362637, y: null}, {x: 0.027713626, y: null}, {x: 0.132121212, y: null}, {x: 0.076180258, y: null}, {x: 0.067599068, y: null}, {x: 0.306865178, y: null}, {x: 0.040816327, y: null}, {x: 0.245704467, y: null}, {x: 0.007203667, y: null}, {x: 0.073689673, y: null}, {x: 0.100893997, y: null}, {x: 0.0, y: null}, {x: 0.042674253, y: null}, {x: 0.050750221, y: null}, {x: 0.098617176, y: null}, {x: 0.049409237, y: null}, {x: 0.213704994, y: null}, {x: 0.214181287, y: null}, {x: 0.183775664, y: 0.0002}, {x: 0.206951027, y: null}, {x: 0.152905199, y: null}, {x: 0.883963494, y: null}, {x: 0.587874659, y: null}, {x: 0.711637487, y: null}, {x: 0.0, y: null}, {x: 0.226415094, y: null}, {x: 0.09394572, y: null}, {x: 0.11577522, y: null}, {x: 0.090062112, y: null}, {x: 0.287859008, y: null}, {x: 0.04732254, y: null}, {x: 0.132924335, y: null}, {x: 0.35235378, y: null}, {x: 0.094637224, y: null}, {x: 0.130541872, y: null}, {x: 0.093366093, y: null}, {x: 0.0, y: null}, {x: 0.492160279, y: null}, {x: 0.112966601, y: null}, {x: 0.059564719, y: null}, {x: 0.443037975, y: null}, {x: 0.211176471, y: null}, {x: 0.152876038, y: null}, {x: 0.749723145, y: null}, {x: 0.425517241, y: null}, {x: 0.124, y: null}, {x: 0.142663962, y: null}, {x: 0.082969432, y: null}, {x: 0.150102459, y: null}, {x: 0.189581554, y: null}, {x: 0.118159204, y: null}, {x: 0.0, y: null}, {x: 0.177738928, y: null}, {x: 0.190880989, y: null}, {x: 0.0, y: null}, {x: 0.182167563, y: null}, {x: 0.129716981, y: null}, {x: 0.0, y: null}, {x: 0.080326753, y: null}, {x: 0.014802632, y: null}, {x: 0.13627451, y: null}, {x: 0.138633377, y: null}, {x: 0.101973684, y: null}, {x: 0.201810437, y: null}, {x: 0.236469609, y: null}, {x: 0.094017094, y: null}, {x: 0.298780488, y: null}, {x: 0.219209915, y: null}, {x: 0.668181818, y: null}, {x: 0.196313364, y: null}, {x: 0.093933464, y: null}, {x: 0.033690659, y: null}, {x: 0.280363831, y: null}, {x: 0.08668942, y: null}, {x: 0.063330727, y: null}, {x: 0.086060606, y: null}, {x: 0.25046729, y: null}, {x: 0.048419637, y: null}, {x: 0.046923879, y: null}, {x: 0.067961165, y: null}, {x: 0.095658572, y: null}, {x: 0.11622807, y: null}, {x: 0.100942127, y: null}, {x: 0.123679304, y: null}, {x: 0.309090909, y: null}, {x: 0.414570685, y: null}, {x: 0.207396302, y: null}, {x: 0.174016687, y: null}, {x: 0.076923077, y: null}, {x: 0.074534161, y: null}, {x: 0.083921016, y: null}, {x: 0.04592721, y: null}, {x: 0.229969419, y: null}, {x: 0.023636364, y: null}, {x: 0.021164021, y: null}, {x: 0.160166604, y: null}, {x: 0.080745342, y: null}, {x: 0.123042506, y: null}, {x: 0.023062731, y: null}, {x: 0.211988304, y: null}, {x: 0.028213166, y: null}, {x: 0.023900574, y: null}, {x: 0.037190083, y: null}, {x: 0.056831923, y: null}, {x: 0.03030303, y: null}, {x: 0.049744898, y: null}, {x: 0.095709571, y: null}, {x: 0.0, y: null}, {x: 0.052213394, y: null}, {x: 0.0, y: null}, {x: 0.020689655, y: null}, {x: 0.167291312, y: null}, {x: 0.104875805, y: null}, {x: 0.021582734, y: null}, {x: 0.082179931, y: null}, {x: 0.051764706, y: null}, {x: 0.094997473, y: null}, {x: 0.067567568, y: null}, {x: 0.210305572, y: null}, {x: 0.035020936, y: null}, {x: 0.165474975, y: null}, {x: 0.091651543, y: null}, {x: 0.022146508, y: null}, {x: 0.047930283, y: null}, {x: 0.029919448, y: null}, {x: 0.098017621, y: null}, {x: 0.14973262, y: null}, {x: 0.034650456, y: null}, {x: 0.101278269, y: null}, {x: 0.0, y: null}, {x: 0.028257457, y: null}, {x: 0.047450425, y: null}, {x: 0.0, y: null}, {x: 0.069802731, y: null}, {x: 0.021949078, y: null}, {x: 0.097122302, y: null}, {x: 0.076965066, y: null}, {x: 0.0, y: null}, {x: 0.030025021, y: null}, {x: 0.188588008, y: null}, {x: 0.186584426, y: null}, {x: 0.006224066, y: null}, {x: 0.0, y: null}, {x: 0.032563025, y: null}, {x: 0.032900433, y: null}, {x: 0.032497679, y: null}, {x: 0.019271949, y: null}, {x: 0.006402049, y: null}, {x: 0.133363069, y: null}, {x: 0.011144449, y: null}, {x: 0.046875, y: null}, {x: 0.0823219, y: null}, {x: 0.092278719, y: null}, {x: 0.058413252, y: null}, {x: 0.09210004, y: null}, {x: 0.029126214, y: null}, {x: 0.181265207, y: null}, {x: 0.14274571, y: null}, {x: 0.120698254, y: null}, {x: 0.125707814, y: null}, {x: 0.045277127, y: null}, {x: 0.142576205, y: null}, {x: 0.299007444, y: null}, {x: 0.170212766, y: null}, {x: 0.157000586, y: null}, {x: 0.027066216, y: null}, {x: 0.01754386, y: null}, {x: 0.060702875, y: null}, {x: 0.039123631, y: null}, {x: 0.013298855, y: null}, {x: 0.086834734, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.039500202, y: null}, {x: 0.037804435, y: null}, {x: 0.267401392, y: null}, {x: 0.220166513, y: null}, {x: 0.011228534, y: null}, {x: 0.0, y: null}, {x: 0.150422535, y: null}, {x: 0.0, y: null}, {x: 0.304878049, y: null}, {x: 0.106789717, y: null}, {x: 0.056280587, y: null}, {x: 0.150065531, y: null}, {x: 0.115853659, y: null}, {x: 0.337142857, y: null}, {x: 0.10259301, y: null}, {x: 0.184615385, y: null}, {x: 0.018297237, y: null}, {x: 0.054405677, y: null}, {x: 0.122971286, y: null}, {x: 0.012399708, y: null}, {x: 0.038372985, y: null}, {x: 0.27161894, y: null}, {x: 0.0, y: null}, {x: 0.079526227, y: null}, {x: 0.080479953, y: null}, {x: 0.01501251, y: null}, {x: 0.043522267, y: null}, {x: 0.0, y: null}, {x: 0.216349542, y: null}, {x: 0.197278912, y: null}, {x: 0.115218731, y: null}, {x: 0.142099057, y: null}, {x: 0.091974752, y: null}, {x: 0.038776389, y: null}, {x: 0.0, y: null}, {x: 0.065751858, y: null}, {x: 0.03978907, y: null}, {x: 0.105875832, y: null}, {x: 0.018276762, y: null}, {x: 0.071559633, y: null}, {x: 0.065749235, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035146444, y: null}, {x: 0.160971223, y: null}, {x: 0.0, y: null}, {x: 0.194786387, y: null}, {x: 0.309343434, y: null}, {x: 0.19538835, y: null}, {x: 0.236316247, y: null}, {x: 0.396019496, y: null}, {x: 0.118527043, y: null}, {x: 0.067320704, y: null}, {x: 0.084677419, y: null}, {x: 0.062948207, y: null}, {x: 0.092592593, y: null}, {x: 0.092065868, y: null}, {x: 0.11732852, y: null}, {x: 0.189245088, y: null}, {x: 0.065173116, y: null}, {x: 0.060016221, y: null}, {x: 0.097799511, y: null}, {x: 0.314457029, y: null}, {x: 0.503213368, y: null}, {x: 0.021934197, y: null}, {x: 0.02, y: null}, {x: 0.037628278, y: null}, {x: 0.052132701, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027796383, y: null}, {x: 0.054054054, y: null}, {x: 0.0, y: null}, {x: 0.095744681, y: null}, {x: 0.059792028, y: null}, {x: 0.025945946, y: null}, {x: 0.089242054, y: null}, {x: 0.018331226, y: null}, {x: 0.164281626, y: null}, {x: 0.028423773, y: null}, {x: 0.042918455, y: null}, {x: 0.046122449, y: null}, {x: 0.212914485, y: null}, {x: 0.03815844, y: null}, {x: 0.110869565, y: null}, {x: 0.088809035, y: null}, {x: 0.112979153, y: null}, {x: 0.111278196, y: null}, {x: 0.015306122, y: null}, {x: 0.065473925, y: null}, {x: 0.046066619, y: null}, {x: 0.091017964, y: null}, {x: 0.064041995, y: null}, {x: 0.119047619, y: null}, {x: 0.161263508, y: null}, {x: 0.051794639, y: null}, {x: 0.038461538, y: null}, {x: 0.421978022, y: null}, {x: 0.025679758, y: null}, {x: 0.074144487, y: null}, {x: 0.37, y: null}, {x: 0.092352092, y: null}, {x: 0.034090909, y: null}, {x: 0.366819747, y: null}, {x: 0.069785884, y: null}, {x: 0.134234234, y: null}, {x: 0.008368201, y: null}, {x: 0.034343434, y: null}, {x: 0.296446701, y: null}, {x: 0.148106904, y: null}, {x: 0.038363171, y: null}, {x: 0.150596878, y: null}, {x: 0.149797571, y: null}, {x: 0.066666667, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.251308901, y: null}, {x: 0.055276382, y: null}, {x: 0.033946252, y: null}, {x: 0.202775636, y: null}, {x: 0.20516129, y: null}, {x: 0.137757948, y: null}, {x: 0.328648649, y: null}, {x: 0.166921899, y: null}, {x: 0.232832618, y: null}, {x: 0.282501757, y: null}, {x: 0.53539823, y: null}, {x: 0.116178067, y: null}, {x: 0.143933685, y: null}, {x: 0.123681687, y: null}, {x: 0.138029059, y: null}, {x: 0.030693069, y: null}, {x: 0.122841966, y: null}, {x: 0.17816092, y: null}, {x: 0.130067568, y: null}, {x: 0.183757743, y: null}, {x: 0.333138516, y: null}, {x: 0.28049952, y: null}, {x: 0.337325349, y: null}, {x: 0.317662861, y: null}, {x: 0.414583333, y: null}, {x: 0.204545455, y: null}, {x: 0.073529412, y: null}, {x: 0.032258065, y: null}, {x: 0.478995654, y: null}, {x: 0.304951691, y: null}, {x: 0.151179941, y: null}, {x: 0.279259663, y: null}, {x: 0.421420256, y: null}, {x: 0.12864494, y: null}, {x: 0.460285132, y: null}, {x: 0.118672199, y: null}, {x: 0.758037225, y: null}, {x: 0.270609319, y: null}, {x: 0.311428571, y: null}, {x: 0.055952381, y: null}, {x: 0.156995052, y: null}, {x: 0.189326557, y: null}, {x: 0.0, y: null}, {x: 0.032206119, y: null}, {x: 0.030685921, y: null}, {x: 0.180958013, y: null}, {x: 0.399301513, y: null}, {x: 0.763809524, y: null}, {x: 0.301276596, y: null}, {x: 0.409141583, y: null}, {x: 0.435582822, y: null}, {x: 0.314685315, y: null}, {x: 0.26982012, y: null}, {x: 0.146877749, y: null}, {x: 0.207492795, y: null}, {x: 0.367272727, y: null}, {x: 0.161939616, y: null}, {x: 0.09703504, y: null}, {x: 0.287692308, y: null}, {x: 0.210185934, y: null}, {x: 0.215801887, y: null}, {x: 0.280946602, y: null}, {x: 0.128497409, y: null}, {x: 0.529963899, y: null}, {x: 0.191881919, y: null}, {x: 0.259142212, y: null}, {x: 0.094492441, y: null}, {x: 0.18767507, y: null}, {x: 0.396480331, y: null}, {x: 0.116883117, y: null}, {x: 0.118780096, y: null}, {x: 0.260273973, y: null}, {x: 0.262370541, y: null}, {x: 0.557233317, y: null}, {x: 0.187552921, y: null}, {x: 0.073234984, y: null}, {x: 0.132596685, y: null}, {x: 0.0, y: null}, {x: 0.077565632, y: null}, {x: 0.057627119, y: null}, {x: 0.090775988, y: null}, {x: 0.193681319, y: null}, {x: 0.122368421, y: null}, {x: 0.01, y: null}, {x: 0.179289026, y: null}, {x: 0.220543807, y: null}, {x: 0.254048583, y: null}, {x: 0.223684211, y: null}, {x: 0.056853583, y: null}, {x: 0.014242116, y: null}, {x: 0.145336226, y: null}, {x: 0.241541353, y: null}, {x: 0.048834628, y: null}, {x: 0.027912621, y: null}, {x: 0.095522388, y: null}, {x: 0.166777852, y: null}, {x: 0.057078652, y: null}, {x: 0.100645161, y: null}, {x: 0.080961417, y: null}, {x: 0.134481495, y: null}, {x: 0.135396518, y: null}, {x: 0.421357616, y: null}, {x: 0.05068836, y: null}, {x: 0.162844037, y: null}, {x: 0.189566116, y: null}, {x: 0.23923445, y: null}, {x: 0.290086494, y: null}, {x: 0.199749269, y: null}, {x: 0.026696329, y: null}, {x: 0.265240642, y: null}, {x: 0.313575526, y: null}, {x: 0.282180717, y: null}, {x: 0.149102623, y: null}, {x: 0.0, y: null}, {x: 0.080589255, y: null}, {x: 0.249742002, y: null}, {x: 0.049832295, y: null}, {x: 0.413069909, y: null}, {x: 0.220733427, y: null}, {x: 0.100917431, y: null}, {x: 0.104424779, y: null}, {x: 0.482122261, y: null}, {x: 0.221273292, y: null}, {x: 0.267625899, y: null}, {x: 0.244877561, y: null}, {x: 0.034391534, y: null}, {x: 0.223984143, y: null}, {x: 0.144946237, y: null}, {x: 0.182076814, y: null}, {x: 0.0, y: null}, {x: 0.069331158, y: null}, {x: 0.067472306, y: null}, {x: 0.149544864, y: null}, {x: 0.107113655, y: null}, {x: 0.101718213, y: null}, {x: 0.132591562, y: null}, {x: 0.149797571, y: null}, {x: 0.052064632, y: null}, {x: 0.077085533, y: null}, {x: 0.07309322, y: null}, {x: 0.083844581, y: null}, {x: 0.380784175, y: null}, {x: 0.128016086, y: null}, {x: 0.02739726, y: null}, {x: 0.109820486, y: null}, {x: 0.060491493, y: null}, {x: 0.038961039, y: null}, {x: 0.337303478, y: null}, {x: 0.142279164, y: null}, {x: 0.257053292, y: null}, {x: 0.010899183, y: null}, {x: 0.0, y: null}, {x: 0.389261745, y: null}, {x: 0.203265766, y: null}, {x: 0.048128342, y: null}, {x: 0.428822496, y: null}, {x: 0.125187406, y: null}, {x: 0.183699871, y: null}, {x: 0.365217391, y: null}, {x: 0.083011583, y: null}, {x: 0.131350682, y: null}, {x: 0.599037691, y: null}, {x: 0.198624905, y: null}, {x: 0.248782647, y: null}, {x: 0.183242507, y: null}, {x: 0.163619744, y: null}, {x: 0.362244898, y: null}, {x: 0.081490105, y: null}, {x: 0.012942779, y: null}, {x: 0.132118451, y: null}, {x: 0.146109052, y: null}, {x: 0.191205863, y: null}, {x: 0.140916808, y: null}, {x: 0.115023474, y: null}, {x: 0.090116279, y: null}, {x: 0.204252577, y: null}, {x: 0.013812155, y: null}, {x: 0.171396141, y: null}, {x: 0.106180666, y: null}, {x: 0.133086876, y: null}, {x: 0.059069212, y: null}, {x: 0.229813665, y: null}, {x: 0.065367693, y: null}, {x: 0.053472222, y: null}, {x: 0.057856273, y: null}, {x: 0.230278885, y: null}, {x: 0.127682026, y: null}, {x: 0.196399345, y: null}, {x: 0.032742888, y: null}, {x: 0.070848708, y: null}, {x: 0.073899899, y: null}, {x: 0.055962118, y: null}, {x: 0.163974152, y: null}, {x: 0.059655325, y: null}, {x: 0.091600529, y: null}, {x: 0.057534247, y: null}, {x: 0.018867925, y: null}, {x: 0.094405594, y: null}, {x: 0.222772277, y: null}, {x: 0.016427105, y: null}, {x: 0.078571429, y: null}, {x: 0.092896175, y: null}, {x: 0.157858614, y: null}, {x: 0.094854586, y: null}, {x: 0.05721393, y: null}, {x: 0.151815182, y: null}, {x: 0.098010674, y: null}, {x: 0.140700483, y: null}, {x: 0.017673654, y: null}, {x: 0.056179775, y: null}, {x: 0.222329628, y: null}, {x: 0.144329897, y: null}, {x: 0.061135371, y: null}, {x: 0.177370031, y: null}, {x: 0.059467919, y: null}, {x: 0.21601686, y: null}, {x: 0.176588294, y: null}, {x: 0.165243382, y: null}, {x: 0.054862843, y: null}, {x: 0.006674082, y: null}, {x: 0.232044199, y: null}, {x: 0.07326284, y: null}, {x: 0.269820972, y: null}, {x: 0.04854679, y: null}, {x: 0.108832808, y: null}, {x: 0.010847107, y: null}, {x: 0.249889037, y: null}, {x: 0.098278986, y: null}, {x: 0.271370421, y: null}, {x: 0.116586539, y: null}, {x: 0.058870645, y: null}, {x: 0.365825688, y: null}, {x: 0.206165703, y: null}, {x: 0.158762887, y: null}, {x: 0.229464286, y: null}, {x: 0.394827586, y: null}, {x: 0.261016949, y: null}, {x: 0.112864078, y: null}, {x: 0.070998797, y: null}, {x: 0.076038904, y: null}, {x: 0.172992057, y: null}, {x: 0.019904165, y: null}, {x: 0.115294118, y: null}, {x: 0.122736419, y: null}, {x: 0.123193916, y: null}, {x: 0.11066879, y: null}, {x: 0.092962641, y: null}, {x: 0.055805581, y: null}, {x: 0.0, y: null}, {x: 0.054852321, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089249493, y: 3617.0713}, {x: 0.067729084, y: null}, {x: 0.146468402, y: null}, {x: 0.118075802, y: null}, {x: 0.041336851, y: null}, {x: 0.078431373, y: null}, {x: 0.109090909, y: null}, {x: 0.144591612, y: null}, {x: 0.127659575, y: null}, {x: 0.139534884, y: null}, {x: 0.035260931, y: null}, {x: 0.105376344, y: null}, {x: 0.046659597, y: null}, {x: 0.12414734, y: null}, {x: 0.048164044, y: null}, {x: 0.107481215, y: null}, {x: 0.051752922, y: null}, {x: 0.020718679, y: null}, {x: 0.17755857, y: null}, {x: 0.080387685, y: null}, {x: 0.036144578, y: null}, {x: 0.063706564, y: null}, {x: 0.249818972, y: null}, {x: 0.122030238, y: null}, {x: 0.088418431, y: null}, {x: 0.400872818, y: null}, {x: 0.151394422, y: null}, {x: 0.039280644, y: null}, {x: 0.270774449, y: 21.541675}, {x: 0.322362869, y: null}, {x: 0.094758065, y: null}, {x: 0.189655172, y: null}, {x: 0.263915547, y: null}, {x: 0.034696406, y: null}, {x: 0.153397249, y: null}, {x: 0.011520737, y: null}, {x: 0.101969873, y: null}, {x: 0.044488712, y: null}, {x: 0.126760563, y: null}, {x: 0.019083969, y: null}, {x: 0.038872692, y: null}, {x: 0.237241379, y: null}, {x: 0.117843711, y: null}, {x: 0.033540373, y: null}, {x: 0.102209945, y: null}, {x: 0.149551346, y: null}, {x: 0.027206771, y: null}, {x: 0.0, y: null}, {x: 0.043303122, y: null}, {x: 0.029739777, y: null}, {x: 0.023255814, y: null}, {x: 0.142011834, y: null}, {x: 0.072378139, y: null}, {x: 0.032032032, y: null}, {x: 0.012672811, y: null}, {x: 0.085040348, y: null}, {x: 0.06805708, y: null}, {x: 0.020866774, y: null}, {x: 0.203373494, y: null}, {x: 0.0, y: null}, {x: 0.108897742, y: null}, {x: 0.0, y: null}, {x: 0.082939987, y: null}, {x: 0.047332832, y: null}, {x: 0.31887456, y: 0.021042}, {x: 0.050544323, y: null}, {x: 0.034053156, y: null}, {x: 0.115384615, y: null}, {x: 0.14994233, y: null}, {x: 0.529921943, y: null}, {x: 0.050147493, y: null}, {x: 0.272055628, y: null}, {x: 0.013659238, y: null}, {x: 0.048918823, y: null}, {x: 0.080353852, y: null}, {x: 0.18960594, y: null}, {x: 0.188690476, y: null}, {x: 0.093849658, y: null}, {x: 0.011942175, y: null}, {x: 0.262019231, y: null}, {x: 0.447311828, y: null}, {x: 0.131868132, y: null}, {x: 0.196, y: null}, {x: 0.086409396, y: null}, {x: 0.159124088, y: null}, {x: 0.100618325, y: null}, {x: 0.022764228, y: null}, {x: 0.048118985, y: null}, {x: 0.051807229, y: null}, {x: 0.054563492, y: null}, {x: 0.05986317, y: null}, {x: 0.099241902, y: null}, {x: 0.092880979, y: null}, {x: 0.038251366, y: null}, {x: 0.091295117, y: null}, {x: 0.038562092, y: null}, {x: 0.170873786, y: null}, {x: 0.03733149, y: null}, {x: 0.039647577, y: null}, {x: 0.16287304, y: null}, {x: 0.151221996, y: null}, {x: 0.073384447, y: null}, {x: 0.059597523, y: null}, {x: 0.094968108, y: null}, {x: 0.073699422, y: null}, {x: 0.158590308, y: null}, {x: 0.067057837, y: null}, {x: 0.076846307, y: null}, {x: 0.071045023, y: null}, {x: 0.098387993, y: null}, {x: 0.051512674, y: null}, {x: 0.076923077, y: null}, {x: 0.093241243, y: null}, {x: 0.098124098, y: null}, {x: 0.168787108, y: null}, {x: 0.181117534, y: null}, {x: 0.406278855, y: null}, {x: 0.194546794, y: null}, {x: 0.112351191, y: null}, {x: 0.035878565, y: null}, {x: 0.5, y: null}, {x: 0.255488267, y: null}, {x: 0.344432314, y: null}, {x: 0.343211578, y: null}, {x: 0.433145009, y: null}, {x: 0.639034628, y: null}, {x: 0.417266187, y: null}, {x: 0.267303103, y: null}, {x: 0.615835777, y: null}, {x: 0.331649832, y: null}, {x: 0.156886967, y: null}, {x: 0.441272812, y: null}, {x: 0.270967742, y: null}, {x: 0.286939943, y: null}, {x: 0.378757515, y: null}, {x: 0.349242424, y: null}, {x: 0.239508266, y: null}, {x: 0.465573771, y: null}, {x: 0.05620155, y: null}, {x: 0.036904762, y: null}, {x: 0.140243902, y: null}, {x: 0.314814815, y: null}, {x: 0.185796862, y: null}, {x: 0.687707641, y: null}, {x: 0.046722907, y: null}, {x: 0.095709571, y: null}, {x: 0.260791367, y: null}, {x: 0.598701299, y: null}, {x: 0.553299492, y: null}, {x: 0.498269896, y: null}, {x: 0.634680135, y: null}, {x: 0.46558527, y: null}, {x: 0.76848091, y: null}, {x: 0.72, y: null}, {x: 0.456996149, y: null}, {x: 0.587811271, y: null}, {x: 0.193051576, y: null}, {x: 0.172546012, y: null}, {x: 0.114702155, y: null}, {x: 0.311498754, y: null}, {x: 0.245917387, y: null}, {x: 0.531537048, y: null}, {x: 0.171641791, y: null}, {x: 0.346092504, y: null}, {x: 0.246049661, y: null}, {x: 0.052738337, y: null}, {x: 0.444564047, y: null}, {x: 0.207803595, y: null}, {x: 0.371939736, y: null}, {x: 0.562998405, y: null}, {x: 0.49867374, y: null}, {x: 0.299544419, y: null}, {x: 0.395575221, y: null}, {x: 0.337116155, y: null}, {x: 0.134394905, y: null}, {x: 0.571684588, y: null}, {x: 0.18220339, y: null}, {x: 0.45508982, y: null}, {x: 0.228740936, y: null}, {x: 0.11484375, y: null}, {x: 0.354814815, y: null}, {x: 0.050492611, y: null}, {x: 0.143243243, y: null}, {x: 0.320530726, y: null}, {x: 0.0, y: null}, {x: 0.021998743, y: null}, {x: 0.085201794, y: null}, {x: 0.125623583, y: null}, {x: 0.06385696, y: null}, {x: 0.095840131, y: null}, {x: 0.050493326, y: null}, {x: 0.274853801, y: null}, {x: 0.117236025, y: null}, {x: 0.127566895, y: null}, {x: 0.405083829, y: null}, {x: 0.022737023, y: null}, {x: 0.194879833, y: null}, {x: 0.051413882, y: null}, {x: 0.060509554, y: null}, {x: 0.146912351, y: null}, {x: 0.2594372, y: null}, {x: 0.123771224, y: null}, {x: 0.169964029, y: null}, {x: 0.115328467, y: null}, {x: 0.069962687, y: null}, {x: 0.053691275, y: null}, {x: 0.080982236, y: null}, {x: 0.050410317, y: null}, {x: 0.051724138, y: null}, {x: 0.133958104, y: null}, {x: 0.099099099, y: null}, {x: 0.075170843, y: null}, {x: 0.041021672, y: null}, {x: 0.241608119, y: null}, {x: 0.098522167, y: null}, {x: 0.152463382, y: null}, {x: 0.113876789, y: null}, {x: 0.096864112, y: null}, {x: 0.078065499, y: null}, {x: 0.288864981, y: null}, {x: 0.299629434, y: null}, {x: 0.080841639, y: null}, {x: 0.094538779, y: null}, {x: 0.15695682, y: null}, {x: 0.069782752, y: null}, {x: 0.087632509, y: null}, {x: 0.167878788, y: null}, {x: 0.166666667, y: null}, {x: 0.439655172, y: null}, {x: 0.031754875, y: null}, {x: 0.022538553, y: null}, {x: 0.072277546, y: null}, {x: 0.151598174, y: null}, {x: 0.038167939, y: null}, {x: 0.025412088, y: null}, {x: 0.07721459, y: null}, {x: 0.103146853, y: null}, {x: 0.157622739, y: null}, {x: 0.210144928, y: null}, {x: 0.013738551, y: null}, {x: 0.096124031, y: null}, {x: 0.276904474, y: null}, {x: 0.398917855, y: null}, {x: 0.24331672, y: null}, {x: 0.13739546, y: null}, {x: 0.181243414, y: null}, {x: 0.216818642, y: null}, {x: 0.348327566, y: null}, {x: 0.135714286, y: null}, {x: 0.020277481, y: null}, {x: 0.111538462, y: null}, {x: 0.029232643, y: null}, {x: 0.134110787, y: null}, {x: 0.397402597, y: null}, {x: 0.357370095, y: null}, {x: 0.21474359, y: null}, {x: 0.23681592, y: null}, {x: 0.01894452, y: null}, {x: 0.01605288, y: null}, {x: 0.107072692, y: null}, {x: 0.08198838, y: null}, {x: 0.052361396, y: null}, {x: 0.087186262, y: null}, {x: 0.143643644, y: null}, {x: 0.080068143, y: null}, {x: 0.106830123, y: null}, {x: 0.205600307, y: null}, {x: 0.181957187, y: null}, {x: 0.087020649, y: null}, {x: 0.075545171, y: null}, {x: 0.041818182, y: null}, {x: 0.06441048, y: null}, {x: 0.03091832, y: null}, {x: 0.045263649, y: null}, {x: 0.159038014, y: null}, {x: 0.158657829, y: null}, {x: 0.06133829, y: null}, {x: 0.144467641, y: null}, {x: 0.066115702, y: null}, {x: 0.177230047, y: null}, {x: 0.19245283, y: null}, {x: 0.243195266, y: null}, {x: 0.094651789, y: null}, {x: 0.047911548, y: null}, {x: 0.025206233, y: null}, {x: 0.029659141, y: null}, {x: 0.113884555, y: null}, {x: 0.039509537, y: null}, {x: 0.088382435, y: null}, {x: 0.181962528, y: null}, {x: 0.041338583, y: null}, {x: 0.205696203, y: null}, {x: 0.147486498, y: null}, {x: 0.146529563, y: null}, {x: 0.127981651, y: null}, {x: 0.073548387, y: null}, {x: 0.302480339, y: null}, {x: 0.28654005, y: null}, {x: 0.327586207, y: null}, {x: 0.50249584, y: null}, {x: 0.254677755, y: null}, {x: 0.346294938, y: null}, {x: 0.157733015, y: null}, {x: 0.255494506, y: null}, {x: 0.285456731, y: null}, {x: 0.182890856, y: null}, {x: 0.34245283, y: null}, {x: 0.244099021, y: null}, {x: 0.20649652, y: null}, {x: 0.27159309, y: null}, {x: 0.175251256, y: null}, {x: 0.339534884, y: null}, {x: 0.218929254, y: null}, {x: 0.080025608, y: null}, {x: 0.333030853, y: null}, {x: 0.031301483, y: null}, {x: 0.212090164, y: null}, {x: 0.193330111, y: null}, {x: 0.388686131, y: null}, {x: 0.312829526, y: null}, {x: 0.415384615, y: null}, {x: 0.027444254, y: null}, {x: 0.200343938, y: null}, {x: 0.061962134, y: null}, {x: 0.118226601, y: null}, {x: 0.188218391, y: null}, {x: 0.355905512, y: null}, {x: 0.530266344, y: null}, {x: 0.072205737, y: null}, {x: 0.276661515, y: null}, {x: 0.020356234, y: null}, {x: 0.051511758, y: null}, {x: 0.049261084, y: null}, {x: 0.052754982, y: null}, {x: 0.067285383, y: null}, {x: 0.10625, y: null}, {x: 0.117270789, y: null}, {x: 0.193846154, y: null}, {x: 0.155155155, y: null}, {x: 0.161396885, y: null}, {x: 0.20831618, y: null}, {x: 0.026587888, y: null}, {x: 0.325757576, y: null}, {x: 0.831460674, y: null}, {x: 0.0, y: null}, {x: 0.389156627, y: null}, {x: 0.181451613, y: null}, {x: 0.109170306, y: null}, {x: 0.319016009, y: null}, {x: 0.353518822, y: null}, {x: 0.190293742, y: null}, {x: 0.424535316, y: null}, {x: 0.226077813, y: null}, {x: 0.132901135, y: null}, {x: 0.154013015, y: null}, {x: 0.409001957, y: null}, {x: 0.129432624, y: null}, {x: 0.211666667, y: null}, {x: 0.116363636, y: null}, {x: 0.294520548, y: null}, {x: 0.204169662, y: null}, {x: 0.17875383, y: null}, {x: 0.173681091, y: null}, {x: 0.169338677, y: null}, {x: 0.224008575, y: null}, {x: 0.479535398, y: null}, {x: 0.343939394, y: null}, {x: 0.390243902, y: null}, {x: 0.141613465, y: null}, {x: 0.194128788, y: null}, {x: 0.325914149, y: null}, {x: 0.480639731, y: null}, {x: 0.0, y: null}, {x: 0.227212682, y: null}, {x: 0.25873606, y: null}, {x: 0.149275362, y: null}, {x: 0.595724907, y: null}, {x: 0.274787535, y: null}, {x: 0.450538688, y: null}, {x: 0.174461767, y: null}, {x: 0.454445664, y: null}, {x: 0.138433516, y: null}, {x: 0.120866591, y: null}, {x: 0.190366973, y: null}, {x: 0.688848921, y: null}, {x: 0.56212223, y: null}, {x: 0.344512195, y: null}, {x: 0.42582897, y: null}, {x: 0.494290375, y: null}, {x: 0.288093769, y: null}, {x: 0.359631821, y: null}, {x: 0.566131026, y: null}, {x: 0.548997773, y: null}, {x: 0.355486862, y: null}, {x: 0.294513956, y: null}, {x: 0.336260979, y: null}, {x: 0.443830571, y: null}, {x: 0.401285047, y: null}, {x: 0.272621133, y: null}, {x: 0.468921389, y: null}, {x: 0.598331347, y: null}, {x: 0.377068558, y: null}, {x: 0.0, y: null}, {x: 0.425795053, y: null}, {x: 0.0, y: null}, {x: 0.816326531, y: null}, {x: 0.27520436, y: null}, {x: 0.016393443, y: null}, {x: 0.895522388, y: null}, {x: 0.305607477, y: null}, {x: 0.31122449, y: null}, {x: 0.596368715, y: null}, {x: 0.541176471, y: null}, {x: 0.397988506, y: null}, {x: 0.478436658, y: null}, {x: 0.44344473, y: null}, {x: 0.164583333, y: null}, {x: 0.405923345, y: null}, {x: 0.605032823, y: null}, {x: 0.235488127, y: null}, {x: 0.692160612, y: null}, {x: 0.684563758, y: null}, {x: 0.134328358, y: null}, {x: 0.593564776, y: null}, {x: 0.713631157, y: null}, {x: 0.235887097, y: null}, {x: 0.448148148, y: null}, {x: 0.676923077, y: null}, {x: 0.724735322, y: null}, {x: 0.758566978, y: null}, {x: 0.896907217, y: null}, {x: 0.800488599, y: null}, {x: 0.778067885, y: null}, {x: 0.354074074, y: null}, {x: 0.488859764, y: null}, {x: 0.465158371, y: null}, {x: 0.26715462, y: null}, {x: 0.186598813, y: null}, {x: 0.241071429, y: null}, {x: 0.273712737, y: null}, {x: 0.140770252, y: null}, {x: 0.066473988, y: null}, {x: 0.072727273, y: null}, {x: 0.051006711, y: null}, {x: 0.090425532, y: null}, {x: 0.187992126, y: null}, {x: 0.105633803, y: null}, {x: 0.135135135, y: null}, {x: 0.174974568, y: null}, {x: 0.066666667, y: null}, {x: 0.146139706, y: null}, {x: 0.109737249, y: null}, {x: 0.0, y: null}, {x: 0.097385032, y: null}, {x: 0.123737374, y: null}, {x: 0.043037975, y: null}, {x: 0.254562044, y: null}, {x: 0.136363636, y: null}, {x: 0.092053501, y: null}, {x: 0.201665125, y: null}, {x: 0.128964059, y: null}, {x: 0.171821306, y: null}, {x: 0.270348837, y: null}, {x: 0.203732504, y: null}, {x: 0.142196532, y: null}, {x: 0.291184328, y: null}, {x: 0.226950355, y: null}, {x: 0.071428571, y: null}, {x: 0.112285337, y: null}, {x: 0.11577424, y: null}, {x: 0.067073171, y: null}, {x: 0.351351351, y: null}, {x: 0.0, y: null}, {x: 0.114119923, y: null}, {x: 0.122105263, y: null}, {x: 0.154598826, y: null}, {x: 0.188552189, y: 7.2}, {x: 0.116618076, y: null}, {x: 0.150337838, y: null}, {x: 0.200892857, y: null}, {x: 0.076081007, y: null}, {x: 0.687810945, y: null}, {x: 0.049010368, y: null}, {x: 0.524475525, y: null}, {x: 0.007918552, y: null}, {x: 0.031767956, y: null}, {x: 0.017045455, y: null}, {x: 0.012484395, y: null}, {x: 0.239120879, y: null}, {x: 0.041968162, y: 766.04}, {x: 0.111761264, y: 273.784}, {x: 0.06127451, y: null}, {x: 0.904428904, y: null}, {x: 0.73870682, y: null}, {x: 0.064956558, y: 2.5375}, {x: 0.322447447, y: null}, {x: 0.842781557, y: 0.473}, {x: 0.139076923, y: null}, {x: 0.437900641, y: null}, {x: 0.408608491, y: null}, {x: 0.460496614, y: null}, {x: 0.416666667, y: null}, {x: 0.24757953, y: 3.82795}, {x: 0.606349206, y: null}, {x: 0.520798669, y: null}, {x: 0.32388664, y: null}, {x: 0.31160221, y: null}, {x: 0.300348736, y: null}, {x: 0.0, y: null}, {x: 0.245294118, y: null}, {x: 0.416449086, y: null}, {x: 0.442989635, y: null}, {x: 0.354477612, y: null}, {x: 0.425998875, y: null}, {x: 0.326586937, y: null}, {x: 0.169918699, y: null}, {x: 0.548543689, y: 0.17529}, {x: 0.401254954, y: null}, {x: 0.487778959, y: null}, {x: 0.022330097, y: null}, {x: 0.137521222, y: null}, {x: 0.661381654, y: null}, {x: 0.198319328, y: null}, {x: 0.02875817, y: null}, {x: 0.113945578, y: 16.942}, {x: 0.330501931, y: null}, {x: 0.139748954, y: null}, {x: 0.038878843, y: null}, {x: 0.0, y: null}, {x: 0.09221902, y: null}, {x: 0.055882353, y: null}, {x: 0.249093108, y: null}, {x: 0.076991943, y: null}, {x: 0.166110184, y: null}, {x: 0.235136941, y: null}, {x: 0.16349481, y: null}, {x: 0.097631012, y: null}, {x: 0.003933137, y: null}, {x: 0.0, y: null}, {x: 0.03022339, y: null}, {x: 0.0, y: null}, {x: 0.131355932, y: null}, {x: 0.116465864, y: null}, {x: 0.0, y: null}, {x: 0.153994225, y: null}, {x: 0.029761905, y: null}, {x: 0.134235759, y: null}, {x: 0.131652661, y: null}, {x: 0.018450185, y: null}, {x: 0.081481481, y: null}, {x: 0.037076271, y: null}, {x: 0.571920758, y: null}, {x: 0.777462121, y: null}, {x: 0.0, y: null}, {x: 0.036605657, y: null}, {x: 0.118689105, y: null}, {x: 0.202036022, y: null}, {x: 0.105577689, y: null}, {x: 0.724522293, y: null}, {x: 0.822995461, y: null}, {x: 0.543385491, y: null}, {x: 0.820846906, y: null}, {x: 0.358778626, y: null}, {x: 0.0, y: null}, {x: 0.070057582, y: null}, {x: 0.018763797, y: null}, {x: 0.728275862, y: null}, {x: 0.212621359, y: null}, {x: 0.0, y: null}, {x: 0.384732824, y: null}, {x: 0.13312369, y: null}, {x: 0.181818182, y: null}, {x: 0.373303167, y: null}, {x: 0.790880503, y: null}, {x: 0.149897331, y: null}, {x: 0.3981026, y: null}, {x: 0.801204819, y: null}, {x: 0.202254642, y: null}, {x: 0.031731641, y: null}, {x: 0.088452088, y: null}, {x: 0.178151261, y: null}, {x: 0.41563786, y: null}, {x: 0.168336673, y: 180.08110000000002}, {x: 0.748675246, y: null}, {x: 0.061491935, y: null}, {x: 0.429326288, y: null}, {x: 0.088946459, y: null}, {x: 0.791830322, y: null}, {x: 0.177983539, y: null}, {x: 0.017738359, y: null}, {x: 0.471451876, y: null}, {x: 0.083727211, y: null}, {x: 0.324817518, y: null}, {x: 0.337236534, y: null}, {x: 0.128983308, y: null}, {x: 0.545931759, y: null}, {x: 0.335671343, y: null}, {x: 0.238836968, y: null}, {x: 0.266832918, y: null}, {x: 0.253475936, y: null}, {x: 0.412725709, y: null}, {x: 0.111324376, y: null}, {x: 0.073280722, y: null}, {x: 0.631192661, y: null}, {x: 0.0, y: null}, {x: 0.755005889, y: null}, {x: 0.544339623, y: null}, {x: 0.582938389, y: null}, {x: 0.619815668, y: null}, {x: 0.413043478, y: null}, {x: 0.588033012, y: null}, {x: 0.706018519, y: null}, {x: 0.311246731, y: null}, {x: 0.475839476, y: null}, {x: 0.647157191, y: null}, {x: 0.476973684, y: null}, {x: 0.865203762, y: null}, {x: 0.783703704, y: null}, {x: 0.501856436, y: null}, {x: 0.298107256, y: null}, {x: 0.532069971, y: null}, {x: 0.518126888, y: null}, {x: 0.250463822, y: null}, {x: 0.746835443, y: null}, {x: 0.509328358, y: null}, {x: 0.689300412, y: null}, {x: 0.495412844, y: null}, {x: 0.31641791, y: null}, {x: 0.200236967, y: null}, {x: 0.506738545, y: null}, {x: 0.345687332, y: null}, {x: 0.37861525, y: null}, {x: 0.595591543, y: null}, {x: 0.976987448, y: null}, {x: 0.844481605, y: null}, {x: 0.643523316, y: null}, {x: 0.58462867, y: null}, {x: 0.758663366, y: null}, {x: 0.460101868, y: null}, {x: 0.151724138, y: null}, {x: 0.39053729, y: null}, {x: 0.692493947, y: null}, {x: 0.514705882, y: null}, {x: 0.487639061, y: null}, {x: 0.603576751, y: null}, {x: 0.586666667, y: null}, {x: 0.615778689, y: null}, {x: 0.325141777, y: null}, {x: 0.694992413, y: null}, {x: 0.51303681, y: null}, {x: 0.318300087, y: null}, {x: 0.504288165, y: null}, {x: 0.346153846, y: null}, {x: 0.22853688, y: null}, {x: 0.419287212, y: null}, {x: 0.371482176, y: null}, {x: 0.244755245, y: null}, {x: 0.290966387, y: null}, {x: 0.602777778, y: null}, {x: 0.773447016, y: null}, {x: 0.382406563, y: null}, {x: 0.514721919, y: null}, {x: 0.747261346, y: null}, {x: 0.241803279, y: null}, {x: 0.461661342, y: null}, {x: 0.490429043, y: null}, {x: 0.592909536, y: null}, {x: 0.643564356, y: null}, {x: 0.517699115, y: null}, {x: 0.314576872, y: null}, {x: 0.546134663, y: null}, {x: 0.549786629, y: null}, {x: 0.83531746, y: null}, {x: 0.314041746, y: null}, {x: 0.53203125, y: null}, {x: 0.361679225, y: null}, {x: 0.451010887, y: null}, {x: 0.412081985, y: null}, {x: 0.460171165, y: null}, {x: 0.219753086, y: null}, {x: 0.116191904, y: null}, {x: 0.466945607, y: null}, {x: 0.335989376, y: null}, {x: 0.545343137, y: null}, {x: 0.640953717, y: null}, {x: 0.627856366, y: null}, {x: 0.209643606, y: null}, {x: 0.064144737, y: null}, {x: 0.214920071, y: null}, {x: 0.102333932, y: null}, {x: 0.224826389, y: null}, {x: 0.285928144, y: null}, {x: 0.273134328, y: null}, {x: 0.204395604, y: null}, {x: 0.362878788, y: null}, {x: 0.359875098, y: null}, {x: 0.445807771, y: null}, {x: 0.503327787, y: null}, {x: 0.597998332, y: null}, {x: 0.41677763, y: null}, {x: 0.53214049, y: null}, {x: 0.448220065, y: null}, {x: 0.367015099, y: null}, {x: 0.394822007, y: null}, {x: 0.250138351, y: null}, {x: 0.569444444, y: null}, {x: 0.423197492, y: null}, {x: 0.339401057, y: null}, {x: 0.491944146, y: null}, {x: 0.572649573, y: null}, {x: 0.567407407, y: null}, {x: 0.538541667, y: null}, {x: 0.486540379, y: null}, {x: 0.600529101, y: null}, {x: 0.643023256, y: null}, {x: 0.395259939, y: null}, {x: 0.301717089, y: null}, {x: 0.461081794, y: null}, {x: 0.173303167, y: null}, {x: 0.103938731, y: null}, {x: 0.510615711, y: null}, {x: 0.518372703, y: null}, {x: 0.503766478, y: null}, {x: 0.166389351, y: null}, {x: 0.733954451, y: null}, {x: 0.317395264, y: null}, {x: 0.09688196, y: null}, {x: 0.110144928, y: null}, {x: 0.226229508, y: null}, {x: 0.453525641, y: null}, {x: 0.156937799, y: null}, {x: 0.318333333, y: null}, {x: 0.47479776, y: null}, {x: 0.364111498, y: null}, {x: 0.481392557, y: null}, {x: 0.612654321, y: null}, {x: 0.45637229, y: null}, {x: 0.430563003, y: null}, {x: 0.425363276, y: null}, {x: 0.682602922, y: null}, {x: 0.874673629, y: null}, {x: 0.429323308, y: null}, {x: 0.424603175, y: null}, {x: 0.71483376, y: null}, {x: 0.799259945, y: null}, {x: 0.326677316, y: null}, {x: 0.459736457, y: null}, {x: 0.613037448, y: null}, {x: 0.397482014, y: null}, {x: 0.40111034, y: null}, {x: 0.193442623, y: null}, {x: 0.504368547, y: null}, {x: 0.372201493, y: null}, {x: 0.666666667, y: null}, {x: 0.301826847, y: null}, {x: 0.272094642, y: null}, {x: 0.181669394, y: null}, {x: 0.45488959, y: null}, {x: 0.10806175, y: null}, {x: 0.237348539, y: null}, {x: 0.478473581, y: null}, {x: 0.507357269, y: null}, {x: 0.06384743, y: null}, {x: 0.481380563, y: null}, {x: 0.182926829, y: null}, {x: 0.286193873, y: null}, {x: 0.079150579, y: null}, {x: 0.072124756, y: null}, {x: 0.062569832, y: null}, {x: 0.30511316, y: null}, {x: 0.014373717, y: null}, {x: 0.027659574, y: null}, {x: 0.090014065, y: null}, {x: 0.093506494, y: null}, {x: 0.110336818, y: null}, {x: 0.171532847, y: null}, {x: 0.18190128, y: null}, {x: 0.222772277, y: null}, {x: 0.357142857, y: null}, {x: 0.28902439, y: null}, {x: 0.25631769, y: null}, {x: 0.209302326, y: null}, {x: 0.046603032, y: null}, {x: 0.136363636, y: null}, {x: 0.529411765, y: null}, {x: 0.513539652, y: null}, {x: 0.694136292, y: null}, {x: 0.320615385, y: null}, {x: 0.187062937, y: null}, {x: 0.440113395, y: null}, {x: 0.3252149, y: null}, {x: 0.223073241, y: null}, {x: 0.348987854, y: null}, {x: 0.203846154, y: null}, {x: 0.485776805, y: null}, {x: 0.195416164, y: null}, {x: 0.303915839, y: null}, {x: 0.519595449, y: null}, {x: 0.446142093, y: null}, {x: 0.708469055, y: null}, {x: 0.87366167, y: null}, {x: 0.122489169, y: null}, {x: 0.103693182, y: null}, {x: 0.104, y: null}, {x: 0.285394098, y: null}, {x: 0.048181818, y: null}, {x: 0.134287662, y: null}, {x: 0.377033493, y: null}, {x: 0.173563218, y: null}, {x: 0.413541667, y: null}, {x: 0.100830368, y: null}, {x: 0.155143339, y: null}, {x: 0.124713083, y: null}, {x: 0.069981584, y: null}, {x: 0.187894073, y: null}, {x: 0.076839237, y: null}, {x: 0.080745342, y: null}, {x: 0.233638283, y: null}, {x: 0.171955403, y: null}, {x: 0.138888889, y: null}, {x: 0.035115304, y: null}, {x: 0.063522618, y: null}, {x: 0.043445693, y: null}, {x: 0.029270889, y: null}, {x: 0.088034718, y: null}, {x: 0.056213018, y: null}, {x: 0.041929925, y: null}, {x: 0.028436019, y: null}, {x: 0.219020173, y: null}, {x: 0.181372549, y: null}, {x: 0.136986301, y: null}, {x: 0.05465587, y: null}, {x: 0.222865412, y: null}, {x: 0.311187103, y: null}, {x: 0.133010883, y: null}, {x: 0.092172641, y: null}, {x: 0.20082531, y: null}, {x: 0.336290323, y: null}, {x: 0.151573539, y: null}, {x: 0.088737201, y: null}, {x: 0.021978022, y: null}, {x: 0.107039537, y: null}, {x: 0.1169464, y: null}, {x: 0.23463357, y: null}, {x: 0.280542986, y: null}, {x: 0.252886836, y: null}, {x: 0.379912664, y: null}, {x: 0.051851852, y: null}, {x: 0.178365938, y: null}, {x: 0.049338147, y: null}, {x: 0.218590398, y: null}, {x: 0.065404475, y: null}, {x: 0.176470588, y: null}, {x: 0.023722628, y: null}, {x: 0.053662074, y: null}, {x: 0.06424581, y: null}, {x: 0.118571429, y: null}, {x: 0.039665971, y: null}, {x: 0.179028133, y: null}, {x: 0.085801839, y: null}, {x: 0.073529412, y: null}, {x: 0.0, y: null}, {x: 0.083003953, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030425963, y: null}, {x: 0.140306122, y: null}, {x: 0.124223603, y: null}, {x: 0.100084104, y: null}, {x: 0.050578035, y: null}, {x: 0.023547881, y: null}, {x: 0.383681399, y: null}, {x: 0.219669118, y: null}, {x: 0.0995086, y: null}, {x: 0.429591837, y: null}, {x: 0.410125589, y: null}, {x: 0.199186992, y: null}, {x: 0.209136331, y: null}, {x: 0.317192983, y: null}, {x: 0.023696682, y: null}, {x: 0.03686934, y: null}, {x: 0.179156328, y: null}, {x: 0.356875334, y: null}, {x: 0.346666667, y: null}, {x: 0.678520626, y: null}, {x: 0.170376712, y: null}, {x: 0.13840399, y: null}, {x: 0.216666667, y: null}, {x: 0.274330042, y: null}, {x: 0.104882459, y: null}, {x: 0.421267894, y: null}, {x: 0.237215909, y: null}, {x: 0.05558066, y: null}, {x: 0.0, y: null}, {x: 0.397889977, y: null}, {x: 0.0, y: null}, {x: 0.445823928, y: null}, {x: 0.375609756, y: null}, {x: 0.260377359, y: null}, {x: 0.311534968, y: null}, {x: 0.712948518, y: null}, {x: 0.017329256, y: null}, {x: 0.381169324, y: null}, {x: 0.449019608, y: null}, {x: 0.421667966, y: null}, {x: 0.230405672, y: null}, {x: 0.207586207, y: null}, {x: 0.593484419, y: null}, {x: 0.405577689, y: null}, {x: 0.184075968, y: null}, {x: 0.953974895, y: null}, {x: 0.346986542, y: null}, {x: 0.646840149, y: null}, {x: 0.596830986, y: null}, {x: 0.440894569, y: null}, {x: 0.652017291, y: null}, {x: 0.535934292, y: null}, {x: 0.561151079, y: null}, {x: 0.50658858, y: null}, {x: 0.357833656, y: null}, {x: 0.333772219, y: 0.028}, {x: 0.289719626, y: null}, {x: 0.58984375, y: null}, {x: 0.131681877, y: null}, {x: 0.784313726, y: null}, {x: 0.203204047, y: null}, {x: 0.409610984, y: null}, {x: 0.199856219, y: null}, {x: 0.7265625, y: null}, {x: 0.327086883, y: null}, {x: 0.614224138, y: null}, {x: 0.0, y: 1.660842}, {x: 0.629213483, y: null}, {x: 0.622093023, y: null}, {x: 0.183846154, y: null}, {x: 0.954098361, y: null}, {x: 0.315033784, y: null}, {x: 0.229651163, y: null}, {x: 0.179271709, y: null}, {x: 0.195809249, y: null}, {x: 0.414746544, y: null}, {x: 0.408737864, y: null}, {x: 0.84139785, y: null}, {x: 0.367078825, y: null}, {x: 0.360212202, y: null}, {x: 0.20239521, y: null}, {x: 0.302828619, y: null}, {x: 0.183716075, y: null}, {x: 0.128787879, y: null}, {x: 0.014957265, y: null}, {x: 0.638455828, y: null}, {x: 0.611774065, y: null}, {x: 0.470467033, y: null}, {x: 0.541012216, y: null}, {x: 0.395325203, y: null}, {x: 0.131528046, y: null}, {x: 0.153016184, y: null}, {x: 0.208333333, y: null}, {x: 0.139296188, y: null}, {x: 0.068167605, y: null}, {x: 0.450508788, y: null}, {x: 0.33502907, y: null}, {x: 0.077464789, y: null}, {x: 0.43372549, y: null}, {x: 0.580346821, y: null}, {x: 0.545454546, y: null}, {x: 0.224074074, y: null}, {x: 0.293424318, y: null}, {x: 0.46031746, y: null}, {x: 0.587436333, y: null}, {x: 0.384101536, y: null}, {x: 0.163851351, y: null}, {x: 0.159649123, y: null}, {x: 0.343042071, y: null}, {x: 0.161805173, y: null}, {x: 0.184895833, y: null}, {x: 0.46461825, y: null}, {x: 0.3375, y: null}, {x: 0.237637363, y: null}, {x: 0.853658537, y: null}, {x: 0.401469606, y: null}, {x: 0.323802164, y: null}, {x: 0.296678967, y: null}, {x: 0.761218837, y: null}, {x: 0.352797203, y: null}, {x: 0.291713326, y: null}, {x: 0.376220053, y: null}, {x: 0.363836825, y: null}, {x: 0.189987163, y: null}, {x: 0.099157485, y: null}, {x: 0.373590982, y: null}, {x: 0.243617482, y: null}, {x: 0.109602816, y: null}, {x: 0.278382582, y: null}, {x: 0.249575552, y: null}, {x: 0.131124914, y: null}, {x: 0.185950413, y: null}, {x: 0.123209169, y: null}, {x: 0.063945578, y: null}, {x: 0.061007958, y: null}, {x: 0.153296267, y: null}, {x: 0.159895151, y: null}, {x: 0.257075472, y: null}, {x: 0.09310987, y: null}, {x: 0.144190871, y: null}, {x: 0.06038821, y: null}, {x: 0.958083832, y: null}, {x: 0.913043478, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.149098474, y: null}, {x: 0.13559322, y: null}, {x: 0.326656395, y: null}, {x: 0.038977913, y: null}, {x: 0.054365733, y: null}, {x: 0.229545455, y: null}, {x: 0.161816065, y: null}, {x: 0.16, y: null}, {x: 0.188829787, y: null}, {x: 0.455266955, y: null}, {x: 0.205666317, y: null}, {x: 0.109977324, y: null}, {x: 0.266155531, y: null}, {x: 0.17522245, y: null}, {x: 0.240979381, y: null}, {x: 0.4, y: null}, {x: 0.441267388, y: null}, {x: 0.190615836, y: null}, {x: 0.37191358, y: null}, {x: 0.120643432, y: null}, {x: 0.188461539, y: null}, {x: 0.4471387, y: null}, {x: 0.078555046, y: null}, {x: 0.15007736, y: null}, {x: 0.191780822, y: null}, {x: 0.046620047, y: null}, {x: 0.131648936, y: null}, {x: 0.062095731, y: null}, {x: 0.664122137, y: null}, {x: 0.150833333, y: null}, {x: 0.136498516, y: null}, {x: 0.304627249, y: null}, {x: 0.103459973, y: null}, {x: 0.157195572, y: null}, {x: 0.462550029, y: null}, {x: 0.382110092, y: null}, {x: 0.53765324, y: null}, {x: 0.545701358, y: null}, {x: 0.47224927, y: null}, {x: 0.447461629, y: null}, {x: 0.415821501, y: null}, {x: 0.146792316, y: null}, {x: 0.236842105, y: null}, {x: 0.14893617, y: null}, {x: 0.22516167, y: null}, {x: 0.138370952, y: null}, {x: 0.248789932, y: null}, {x: 0.03446419, y: null}, {x: 0.110766847, y: null}, {x: 0.129775281, y: null}, {x: 0.100196464, y: null}, {x: 0.200575816, y: null}, {x: 0.055768412, y: null}, {x: 0.201557936, y: null}, {x: 0.224975223, y: null}, {x: 0.087788131, y: null}, {x: 0.4125, y: null}, {x: 0.245819398, y: null}, {x: 0.186023622, y: null}, {x: 0.087850467, y: null}, {x: 0.296296296, y: null}, {x: 0.171052632, y: null}, {x: 0.109227872, y: null}, {x: 0.583036351, y: null}, {x: 0.136543015, y: null}, {x: 0.262032086, y: null}, {x: 0.443850267, y: null}, {x: 0.425793245, y: null}, {x: 0.106078665, y: null}, {x: 0.351926978, y: null}, {x: 0.146537842, y: null}, {x: 0.166141378, y: null}, {x: 0.720245399, y: 626.415468}, {x: 0.37398374, y: null}, {x: 0.393744988, y: null}, {x: 0.360836084, y: null}, {x: 0.016277424, y: null}, {x: 0.155405405, y: null}, {x: 0.107358263, y: null}, {x: 0.157471264, y: null}, {x: 0.21826484, y: null}, {x: 0.434280639, y: null}, {x: 0.135859519, y: null}, {x: 0.504424779, y: 0.316}, {x: 0.331439394, y: 13.296268}, {x: 0.1925, y: null}, {x: 0.70642978, y: null}, {x: 0.413407821, y: null}, {x: 0.226785714, y: null}, {x: 0.39912759, y: 0.22}, {x: 0.038442084, y: null}, {x: 0.086372361, y: null}, {x: 0.264116576, y: 0.171}, {x: 0.191969197, y: null}, {x: 0.298534799, y: null}, {x: 0.346153846, y: null}, {x: 0.609081935, y: null}, {x: 0.507186858, y: null}, {x: 0.37306317, y: null}, {x: 0.292442497, y: null}, {x: 0.335607094, y: null}, {x: 0.779331307, y: null}, {x: 0.15970696, y: null}, {x: 0.171193936, y: null}, {x: 0.612021858, y: null}, {x: 0.703883495, y: 9.505065}, {x: 0.457281553, y: null}, {x: 0.562557924, y: null}, {x: 0.501336898, y: 3.291023}, {x: 0.337520938, y: null}, {x: 0.25, y: null}, {x: 0.407685098, y: null}, {x: 0.606765328, y: null}, {x: 0.080645161, y: null}, {x: 0.079228243, y: null}, {x: 0.104516129, y: null}, {x: 0.077892325, y: null}, {x: 0.367364747, y: null}, {x: 0.068111455, y: null}, {x: 0.108819658, y: null}, {x: 0.11015583, y: null}, {x: 0.172651934, y: null}, {x: 0.111111111, y: null}, {x: 0.060164084, y: null}, {x: 0.070151307, y: null}, {x: 0.123994922, y: null}, {x: 0.038129496, y: null}, {x: 0.053426875, y: null}, {x: 0.086317723, y: null}, {x: 0.043972707, y: null}, {x: 0.465462274, y: null}, {x: 0.23566879, y: null}, {x: 0.264705882, y: null}, {x: 0.049122807, y: null}, {x: 0.269614836, y: null}, {x: 0.213986014, y: null}, {x: 0.355283308, y: null}, {x: 0.142217802, y: null}, {x: 0.323320158, y: null}, {x: 0.142641737, y: null}, {x: 0.076765309, y: null}, {x: 0.129266521, y: null}, {x: 0.05380117, y: null}, {x: 0.174522293, y: null}, {x: 0.129558541, y: null}, {x: 0.12732688, y: null}, {x: 0.120177384, y: null}, {x: 0.101956746, y: null}, {x: 0.044871795, y: null}, {x: 0.115360888, y: null}, {x: 0.242375602, y: null}, {x: 0.013727811, y: null}, {x: 0.108982827, y: null}, {x: 0.119537921, y: null}, {x: 0.13562387, y: null}, {x: 0.17057903, y: null}, {x: 0.243936567, y: 0.016676}, {x: 0.220125786, y: null}, {x: 0.196088523, y: null}, {x: 0.402489627, y: null}, {x: 0.199237369, y: null}, {x: 0.206236712, y: null}, {x: 0.407784986, y: null}, {x: 0.263336156, y: null}, {x: 0.026652452, y: null}, {x: 0.204599524, y: null}, {x: 0.187368421, y: null}, {x: 0.165945166, y: null}, {x: 0.143786127, y: null}, {x: 0.105773283, y: null}, {x: 0.068292683, y: null}, {x: 0.085781434, y: null}, {x: 0.016412661, y: null}, {x: 0.199815838, y: null}, {x: 0.200620476, y: null}, {x: 0.302513465, y: null}, {x: 0.103148024, y: null}, {x: 0.544925125, y: null}, {x: 0.021215596, y: null}, {x: 0.0664322, y: null}, {x: 0.096162528, y: null}, {x: 0.133923919, y: null}, {x: 0.095753539, y: null}, {x: 0.226061204, y: null}, {x: 0.060784314, y: null}, {x: 0.167766258, y: null}, {x: 0.05978975, y: null}, {x: 0.070167064, y: null}, {x: 0.036215817, y: null}, {x: 0.053117783, y: null}, {x: 0.131707317, y: null}, {x: 0.107004964, y: null}, {x: 0.27893368, y: null}, {x: 0.078893019, y: null}, {x: 0.10998308, y: null}, {x: 0.161182642, y: null}, {x: 0.172489083, y: null}, {x: 0.117892977, y: null}, {x: 0.175297702, y: null}, {x: 0.119463087, y: null}, {x: 0.156806843, y: null}, {x: 0.337853774, y: null}, {x: 0.518857143, y: null}, {x: 0.091755319, y: null}, {x: 0.361861862, y: null}, {x: 0.186346864, y: null}, {x: 0.288183092, y: null}, {x: 0.136073707, y: null}, {x: 0.271484375, y: null}, {x: 0.082119205, y: null}, {x: 0.054570259, y: null}, {x: 0.080757727, y: null}, {x: 0.459704881, y: null}, {x: 0.714870396, y: null}, {x: 0.249322493, y: null}, {x: 0.496815287, y: null}, {x: 0.442922374, y: null}, {x: 0.388395904, y: null}, {x: 0.424956872, y: null}, {x: 0.049279161, y: null}, {x: 0.446127946, y: null}, {x: 0.064091308, y: null}, {x: 0.098901099, y: null}, {x: 0.174726989, y: null}, {x: 0.140720598, y: null}, {x: 0.057061341, y: null}, {x: 0.541926542, y: null}, {x: 0.185299296, y: null}, {x: 0.14417435, y: null}, {x: 0.134857676, y: null}, {x: 0.027742749, y: null}, {x: 0.084090909, y: null}, {x: 0.101941748, y: null}, {x: 0.281602003, y: null}, {x: 0.290262172, y: null}, {x: 0.146823278, y: null}, {x: 0.283924843, y: null}, {x: 0.449640288, y: null}, {x: 0.159751037, y: null}, {x: 0.154223624, y: null}, {x: 0.42283105, y: null}, {x: 0.405538695, y: null}, {x: 0.332888889, y: null}, {x: 0.13303438, y: null}, {x: 0.602739726, y: null}, {x: 0.308855292, y: null}, {x: 0.25756187, y: null}, {x: 0.336330935, y: null}, {x: 0.238187078, y: null}, {x: 0.387447699, y: null}, {x: 0.293074324, y: null}, {x: 0.0, y: null}, {x: 0.704724409, y: null}, {x: 0.489795918, y: null}, {x: 0.692726373, y: null}, {x: 0.509162304, y: null}, {x: 0.524203822, y: null}, {x: 0.511111111, y: null}, {x: 0.575713241, y: null}, {x: 0.659748428, y: null}, {x: 0.570722668, y: null}, {x: 0.800833333, y: null}, {x: 0.712883436, y: null}, {x: 0.362930078, y: null}, {x: 0.702479339, y: null}, {x: 0.39157373, y: null}, {x: 0.461309524, y: null}, {x: 0.838216561, y: null}, {x: 0.330357143, y: null}, {x: 0.713744076, y: null}, {x: 0.590368609, y: null}, {x: 0.691620879, y: null}, {x: 0.400885936, y: null}, {x: 0.426078029, y: null}, {x: 0.61774744, y: null}, {x: 0.846666667, y: null}, {x: 0.0, y: null}, {x: 0.914919852, y: null}, {x: 0.631612492, y: null}, {x: 0.765822785, y: null}, {x: 0.408058608, y: null}, {x: 0.376654633, y: null}, {x: 0.759137769, y: null}, {x: 0.460877863, y: null}, {x: 0.962820513, y: null}, {x: 0.246535376, y: null}, {x: 0.494708995, y: null}, {x: 0.54665493, y: null}, {x: 0.35234657, y: null}, {x: 0.529850746, y: null}, {x: 0.703867403, y: null}, {x: 0.939643347, y: null}, {x: 0.762730834, y: null}, {x: 0.320601852, y: null}, {x: 0.268222963, y: null}, {x: 0.234782609, y: null}, {x: 0.374434389, y: null}, {x: 0.24598678, y: null}, {x: 0.352293578, y: null}, {x: 0.213042102, y: null}, {x: 0.334760885, y: null}, {x: 0.171677983, y: null}, {x: 0.349802372, y: null}, {x: 0.4289746, y: null}, {x: 0.175397094, y: null}, {x: 0.499491353, y: null}, {x: 0.15256876, y: null}, {x: 0.526505404, y: null}, {x: 0.373093682, y: null}, {x: 0.689587426, y: null}, {x: 0.535564854, y: null}, {x: 0.419400856, y: null}, {x: 0.282937365, y: null}, {x: 0.505960265, y: 563.320881}, {x: 0.512396694, y: null}, {x: 0.55448718, y: null}, {x: 0.400758534, y: null}, {x: 0.351351351, y: null}, {x: 0.551984877, y: null}, {x: 0.676271186, y: null}, {x: 0.65462754, y: null}, {x: 0.193480547, y: null}, {x: 0.349487419, y: null}, {x: 0.369491525, y: null}, {x: 0.091752577, y: null}, {x: 0.143213729, y: null}, {x: 0.197945845, y: null}, {x: 0.344911147, y: null}, {x: 0.472275335, y: null}, {x: 0.369195923, y: null}, {x: 0.301724138, y: null}, {x: 0.423828125, y: null}, {x: 0.26713948, y: null}, {x: 0.786836935, y: null}, {x: 0.0, y: null}, {x: 0.647144949, y: null}, {x: 0.370813397, y: null}, {x: 0.779329609, y: null}, {x: 0.392805755, y: null}, {x: 0.250976018, y: null}, {x: 0.391691395, y: null}, {x: 0.171388102, y: null}, {x: 0.293124246, y: null}, {x: 0.03257329, y: null}, {x: 0.105769231, y: null}, {x: 0.2324897, y: null}, {x: 0.110019646, y: null}, {x: 0.187331536, y: null}, {x: 0.232886905, y: null}, {x: 0.05028463, y: null}, {x: 0.041509434, y: null}, {x: 0.11147541, y: null}, {x: 0.200284091, y: null}, {x: 0.104834329, y: null}, {x: 0.326230713, y: null}, {x: 0.212830957, y: null}, {x: 0.229892337, y: null}, {x: 0.253539254, y: null}, {x: 0.093315685, y: null}, {x: 0.171334432, y: null}, {x: 0.017035775, y: null}, {x: 0.180933852, y: null}, {x: 0.103669725, y: null}, {x: 0.082381729, y: null}, {x: 0.05710207, y: null}, {x: 0.212732919, y: null}, {x: 0.136794396, y: 58.2}, {x: 0.23046875, y: null}, {x: 0.388836329, y: null}, {x: 0.079754601, y: null}, {x: 0.064220183, y: null}, {x: 0.065891473, y: null}, {x: 0.089265537, y: null}, {x: 0.098484848, y: null}, {x: 0.121412804, y: null}, {x: 0.071636012, y: null}, {x: 0.028651015, y: null}, {x: 0.099415205, y: null}, {x: 0.277081798, y: null}, {x: 0.032173913, y: null}, {x: 0.059291683, y: null}, {x: 0.030828516, y: null}, {x: 0.19376392, y: null}, {x: 0.042689838, y: null}, {x: 0.086629002, y: null}, {x: 0.08554674, y: null}, {x: 0.148779103, y: null}, {x: 0.225012072, y: null}, {x: 0.085658663, y: null}, {x: 0.123092574, y: null}, {x: 0.101036269, y: null}, {x: 0.088686754, y: null}, {x: 0.089260313, y: null}, {x: 0.066808059, y: null}, {x: 0.200704225, y: null}, {x: 0.254804712, y: null}, {x: 0.125153374, y: null}, {x: 0.125041024, y: null}, {x: 0.059336824, y: null}, {x: 0.048309179, y: null}, {x: 0.023809524, y: null}, {x: 0.021861777, y: null}, {x: 0.164478231, y: null}, {x: 0.159452055, y: null}, {x: 0.051624388, y: null}, {x: 0.079594017, y: null}, {x: 0.189922481, y: null}, {x: 0.062966916, y: null}, {x: 0.033414833, y: null}, {x: 0.07121058, y: null}, {x: 0.043062201, y: null}, {x: 0.013370474, y: null}, {x: 0.049490539, y: null}, {x: 0.291770574, y: null}, {x: 0.128503437, y: null}, {x: 0.091035441, y: null}, {x: 0.072281167, y: null}, {x: 0.378029079, y: null}, {x: 0.057640751, y: null}, {x: 0.064824655, y: null}, {x: 0.047761194, y: null}, {x: 0.282958199, y: null}, {x: 0.110778443, y: null}, {x: 0.0, y: null}, {x: 0.049710425, y: null}, {x: 0.205309735, y: null}, {x: 0.022093635, y: null}, {x: 0.109957239, y: null}, {x: 0.055788455, y: null}, {x: 0.099258414, y: null}, {x: 0.164835165, y: null}, {x: 0.011349306, y: null}, {x: 0.181008902, y: null}, {x: 0.039004707, y: null}, {x: 0.116424116, y: null}, {x: 0.065818998, y: null}, {x: 0.214585519, y: null}, {x: 0.008237232, y: null}, {x: 0.110149942, y: null}, {x: 0.11430527, y: null}, {x: 0.125459318, y: null}, {x: 0.014858841, y: null}, {x: 0.022026432, y: null}, {x: 0.365714286, y: null}, {x: 0.047191011, y: null}, {x: 0.102651258, y: null}, {x: 0.442716858, y: null}, {x: 0.389589905, y: null}, {x: 0.214454976, y: null}, {x: 0.417814509, y: null}, {x: 0.119771863, y: null}, {x: 0.301587302, y: null}, {x: 0.568487728, y: null}, {x: 0.076479076, y: null}, {x: 0.184641933, y: null}, {x: 0.103092784, y: null}, {x: 0.162983425, y: null}, {x: 0.027469316, y: null}, {x: 0.08627451, y: null}, {x: 0.019984013, y: null}, {x: 0.104316547, y: null}, {x: 0.174560217, y: null}, {x: 0.193661972, y: null}, {x: 0.066378845, y: null}, {x: 0.211389522, y: null}, {x: 0.198927933, y: null}, {x: 0.154576271, y: null}, {x: 0.100294985, y: null}, {x: 0.054894434, y: null}, {x: 0.11574328, y: null}, {x: 0.053484603, y: null}, {x: 0.117572291, y: null}, {x: 0.193040597, y: null}, {x: 0.07118451, y: null}, {x: 0.253968254, y: null}, {x: 0.166277129, y: null}, {x: 0.231752797, y: null}, {x: 0.210729448, y: null}, {x: 0.029944838, y: null}, {x: 0.035576638, y: null}, {x: 0.173707067, y: null}, {x: 0.0, y: null}, {x: 0.182065217, y: null}, {x: 0.208086785, y: null}, {x: 0.175537359, y: null}, {x: 0.062116041, y: null}, {x: 0.053342817, y: null}, {x: 0.050961863, y: null}, {x: 0.08186929, y: null}, {x: 0.174231332, y: null}, {x: 0.084575111, y: null}, {x: 0.141538462, y: null}, {x: 0.090909091, y: null}, {x: 0.041027766, y: null}, {x: 0.116177389, y: null}, {x: 0.08148592, y: null}, {x: 0.150557621, y: null}, {x: 0.312891114, y: null}, {x: 0.2375, y: null}, {x: 0.068212824, y: null}, {x: 0.067519545, y: null}, {x: 0.121150934, y: null}, {x: 0.012322859, y: null}, {x: 0.103762136, y: null}, {x: 0.281499203, y: null}, {x: 0.531353135, y: null}, {x: 0.531192661, y: null}, {x: 0.411413969, y: null}, {x: 0.42962963, y: null}, {x: 0.332378224, y: null}, {x: 0.259229535, y: null}, {x: 0.116621984, y: null}, {x: 0.396162528, y: null}, {x: 0.443053817, y: null}, {x: 0.216348774, y: null}, {x: 0.439892545, y: null}, {x: 0.125984252, y: null}, {x: 0.068193131, y: null}, {x: 0.358549223, y: null}, {x: 0.066871637, y: null}, {x: 0.137670197, y: null}, {x: 0.235857267, y: null}, {x: 0.198325253, y: null}, {x: 0.067734887, y: null}, {x: 0.139903515, y: null}, {x: 0.034343434, y: null}, {x: 0.072511266, y: null}, {x: 0.24797048, y: null}, {x: 0.193658955, y: null}, {x: 0.215316315, y: null}, {x: 0.381229236, y: null}, {x: 0.232831916, y: null}, {x: 0.705114255, y: null}, {x: 0.447403462, y: null}, {x: 0.860294118, y: null}, {x: 0.573271889, y: null}, {x: 0.535159141, y: null}, {x: 0.754663652, y: null}, {x: 0.271039604, y: null}, {x: 0.117948718, y: null}, {x: 0.327064595, y: null}, {x: 0.404243119, y: null}, {x: 0.317155756, y: null}, {x: 0.057017544, y: null}, {x: 0.079575597, y: null}, {x: 0.175498576, y: null}, {x: 0.042253521, y: null}, {x: 0.31218089, y: null}, {x: 0.275208914, y: null}, {x: 0.0, y: null}, {x: 0.087354918, y: null}, {x: 0.173439049, y: null}, {x: 0.2734375, y: null}, {x: 0.117002882, y: null}, {x: 0.241293532, y: null}, {x: 0.266666667, y: null}, {x: 0.12326228, y: null}, {x: 0.302752294, y: null}, {x: 0.118620038, y: null}, {x: 0.1223272, y: null}, {x: 0.356719818, y: null}, {x: 0.152706553, y: null}, {x: 0.374374374, y: null}, {x: 0.215839861, y: null}, {x: 0.116863905, y: null}, {x: 0.116147309, y: null}, {x: 0.006660324, y: null}, {x: 0.078276165, y: null}, {x: 0.096501809, y: null}, {x: 0.026209677, y: null}, {x: 0.034934498, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.0402013485, y: 44.25526846192295}, {x: 0.12383678599999999, y: 315.44136904566795}, {x: 0.2423858485, y: 155.1622247679142}, {x: 0.658750411, y: 156.86954737924398}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.0402013485, y: -15.171506999243164}, {x: 0.12383678599999999, y: 37.13396789985188}, {x: 0.2423858485, y: 0.10890724673529917}, {x: 0.658750411, y: 68.66824628408706}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.0402013485, y: 103.68204392308907}, {x: 0.12383678599999999, y: 593.748770191484}, {x: 0.2423858485, y: 310.21554228909315}, {x: 0.658750411, y: 245.07084847440092}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.225365854, y: null}, {x: 0.157170923, y: null}, {x: 0.292569659, y: null}, {x: 0.355932203, y: null}, {x: 0.331747919, y: null}, {x: 0.195612431, y: null}, {x: 0.421416235, y: null}, {x: 0.087596356, y: null}, {x: 0.246537396, y: null}, {x: 0.090909091, y: null}, {x: 0.233269599, y: null}, {x: 0.139484979, y: null}, {x: 0.086071987, y: null}, {x: 0.066143498, y: null}, {x: 0.247483222, y: null}, {x: 0.205073996, y: null}, {x: 0.118927973, y: null}, {x: 0.180357143, y: null}, {x: 0.40131579, y: null}, {x: 0.452808989, y: null}, {x: 0.060307018, y: null}, {x: 0.151642208, y: null}, {x: 0.037537538, y: 0.093729}, {x: 0.147126437, y: null}, {x: 0.11827957, y: null}, {x: 0.054669704, y: null}, {x: 0.382763975, y: null}, {x: 0.035135135, y: null}, {x: 0.013349515, y: null}, {x: 0.029652352, y: null}, {x: 0.194623656, y: null}, {x: 0.372727273, y: null}, {x: 0.221893491, y: null}, {x: 0.144, y: null}, {x: 0.03452381, y: null}, {x: 0.467171717, y: null}, {x: 0.153678711, y: null}, {x: 0.053731343, y: null}, {x: 0.08716707, y: null}, {x: 0.343377716, y: null}, {x: 0.079958463, y: null}, {x: 0.197693575, y: null}, {x: 0.078787879, y: null}, {x: 0.108029197, y: null}, {x: 0.220935043, y: null}, {x: 0.17695962, y: null}, {x: 0.1484375, y: null}, {x: 0.104990584, y: null}, {x: 0.365819209, y: null}, {x: 0.157706093, y: null}, {x: 0.201189296, y: null}, {x: 0.193396226, y: null}, {x: 0.215859031, y: null}, {x: 0.209302326, y: null}, {x: 0.138307552, y: null}, {x: 0.084931507, y: null}, {x: 0.163904236, y: null}, {x: 0.094619666, y: null}, {x: 0.328301887, y: null}, {x: 0.284076433, y: null}, {x: 0.236363636, y: null}, {x: 0.126789366, y: null}, {x: 0.039622642, y: null}, {x: 0.195773081, y: null}, {x: 0.282835821, y: null}, {x: 0.397154713, y: null}, {x: 0.359016393, y: null}, {x: 0.159090909, y: null}, {x: 0.204285714, y: null}, {x: 0.097014925, y: null}, {x: 0.247560976, y: null}, {x: 0.115187087, y: null}, {x: 0.147157191, y: null}, {x: 0.122807018, y: null}, {x: 0.275761974, y: null}, {x: 0.041497152, y: null}, {x: 0.233900052, y: null}, {x: 0.196217494, y: null}, {x: 0.127208481, y: null}, {x: 0.027994792, y: null}, {x: 0.050189394, y: null}, {x: 0.29454171, y: null}, {x: 0.238773275, y: null}, {x: 0.280051151, y: null}, {x: 0.09030837, y: null}, {x: 0.296663661, y: null}, {x: 0.261219793, y: null}, {x: 0.401098901, y: null}, {x: 0.088806661, y: null}, {x: 0.472783826, y: null}, {x: 0.123818526, y: null}, {x: 0.492088608, y: null}, {x: 0.13091922, y: null}, {x: 0.040025016, y: null}, {x: 0.010574018, y: null}, {x: 0.093610698, y: null}, {x: 0.0, y: null}, {x: 0.022082019, y: null}, {x: 0.594444444, y: null}, {x: 0.163619744, y: null}, {x: 0.426900585, y: null}, {x: 0.230932203, y: null}, {x: 0.159406858, y: null}, {x: 0.271081221, y: null}, {x: 0.510526316, y: null}, {x: 0.184037559, y: null}, {x: 0.406756757, y: null}, {x: 0.178927681, y: null}, {x: 0.11741683, y: null}, {x: 0.03526971, y: null}, {x: 0.099724897, y: null}, {x: 0.114718615, y: null}, {x: 0.115099715, y: null}, {x: 0.128979144, y: null}, {x: 0.13, y: null}, {x: 0.125295508, y: null}, {x: 0.100821168, y: null}, {x: 0.175257732, y: null}, {x: 0.191208791, y: null}, {x: 0.089236431, y: null}, {x: 0.053469852, y: null}, {x: 0.097664544, y: null}, {x: 0.232054691, y: null}, {x: 0.082802548, y: null}, {x: 0.01540957, y: null}, {x: 0.172268908, y: null}, {x: 0.069911163, y: null}, {x: 0.074749316, y: null}, {x: 0.204968944, y: null}, {x: 0.096666667, y: null}, {x: 0.147651007, y: null}, {x: 0.14691358, y: null}, {x: 0.084097859, y: null}, {x: 0.08173913, y: null}, {x: 0.301909308, y: null}, {x: 0.045045045, y: null}, {x: 0.132592593, y: null}, {x: 0.061993517, y: null}, {x: 0.073134328, y: null}, {x: 0.227629513, y: null}, {x: 0.125977411, y: null}, {x: 0.0, y: null}, {x: 0.193959732, y: null}, {x: 0.120923913, y: null}, {x: 0.190682557, y: null}, {x: 0.089411765, y: null}, {x: 0.11621455, y: null}, {x: 0.192153723, y: null}, {x: 0.087619048, y: null}, {x: 0.260299626, y: null}, {x: 0.261904762, y: null}, {x: 0.113636364, y: null}, {x: 0.212952799, y: null}, {x: 0.05985267, y: null}, {x: 0.138266797, y: null}, {x: 0.279229711, y: null}, {x: 0.246469833, y: null}, {x: 0.505128205, y: null}, {x: 0.067010309, y: null}, {x: 0.122282609, y: null}, {x: 0.198312236, y: null}, {x: 0.041726619, y: null}, {x: 0.021920668, y: null}, {x: 0.121571838, y: null}, {x: 0.06147968, y: null}, {x: 0.199362042, y: null}, {x: 0.042465753, y: null}, {x: 0.142639787, y: null}, {x: 0.407854985, y: null}, {x: 0.239823982, y: null}, {x: 0.317391304, y: null}, {x: 0.1872, y: null}, {x: 0.076923077, y: null}, {x: 0.141566265, y: null}, {x: 0.285367825, y: null}, {x: 0.203596288, y: null}, {x: 0.442902882, y: null}, {x: 0.136732329, y: null}, {x: 0.451802179, y: null}, {x: 0.25140713, y: null}, {x: 0.063268893, y: null}, {x: 0.078085642, y: null}, {x: 0.185135135, y: null}, {x: 0.10451505, y: null}, {x: 0.209565217, y: null}, {x: 0.100446429, y: null}, {x: 0.308504035, y: null}, {x: 0.308474576, y: null}, {x: 0.189907039, y: null}, {x: 0.150778816, y: null}, {x: 0.105535055, y: null}, {x: 0.122593718, y: null}, {x: 0.449620802, y: null}, {x: 0.49765747, y: null}, {x: 0.372031662, y: null}, {x: 0.0, y: null}, {x: 0.738191633, y: null}, {x: 0.471971067, y: null}, {x: 0.579825835, y: null}, {x: 0.747445256, y: null}, {x: 0.251798561, y: null}, {x: 0.481848185, y: null}, {x: 0.631306598, y: null}, {x: 0.440744368, y: null}, {x: 0.373697917, y: null}, {x: 0.323797139, y: null}, {x: 0.170967742, y: null}, {x: 0.331770223, y: null}, {x: 0.283076923, y: null}, {x: 0.583864119, y: null}, {x: 0.048957389, y: null}, {x: 0.188175461, y: null}, {x: 0.097744361, y: null}, {x: 0.178166838, y: null}, {x: 0.149159664, y: null}, {x: 0.602666667, y: null}, {x: 0.645833333, y: null}, {x: 0.679802956, y: null}, {x: 0.493530499, y: null}, {x: 0.539249147, y: null}, {x: 0.085648148, y: null}, {x: 0.245960503, y: null}, {x: 0.092699884, y: null}, {x: 0.029388403, y: null}, {x: 0.101694915, y: null}, {x: 0.108744395, y: null}, {x: 0.185616438, y: null}, {x: 0.0, y: null}, {x: 0.3125, y: null}, {x: 0.626851852, y: null}, {x: 0.405633803, y: null}, {x: 0.086572438, y: null}, {x: 0.178030303, y: null}, {x: 0.080765143, y: null}, {x: 0.103703704, y: null}, {x: 0.40327294, y: null}, {x: 0.158713693, y: null}, {x: 0.194915254, y: null}, {x: 0.237885463, y: null}, {x: 0.181443299, y: null}, {x: 0.170940171, y: null}, {x: 0.454320988, y: null}, {x: 0.214015152, y: null}, {x: 0.0546875, y: null}, {x: 0.242740134, y: null}, {x: 0.055469954, y: null}, {x: 0.153707052, y: null}, {x: 0.162576687, y: null}, {x: 0.134762634, y: null}, {x: 0.212301587, y: null}, {x: 0.167852063, y: null}, {x: 0.303030303, y: null}, {x: 0.019690577, y: 0.175}, {x: 0.06601467, y: null}, {x: 0.150295858, y: null}, {x: 0.385103011, y: null}, {x: 0.055828221, y: null}, {x: 0.180851064, y: null}, {x: 0.524421594, y: null}, {x: 0.123439667, y: null}, {x: 0.134693878, y: null}, {x: 0.174712644, y: null}, {x: 0.099078341, y: null}, {x: 0.066597294, y: null}, {x: 0.247953216, y: null}, {x: 0.20527307, y: null}, {x: 0.459850107, y: null}, {x: 0.484200744, y: null}, {x: 0.575488455, y: null}, {x: 0.187830688, y: null}, {x: 0.208279431, y: null}, {x: 0.296466974, y: null}, {x: 0.086743044, y: null}, {x: 0.52919708, y: null}, {x: 0.397333333, y: null}, {x: 0.390563565, y: null}, {x: 0.386637459, y: null}, {x: 0.341246291, y: null}, {x: 0.357712766, y: null}, {x: 0.184601925, y: null}, {x: 0.132368149, y: null}, {x: 0.127481714, y: null}, {x: 0.13570887, y: null}, {x: 0.177257525, y: null}, {x: 0.527486911, y: null}, {x: 0.153652393, y: null}, {x: 0.204365079, y: null}, {x: 0.130850048, y: null}, {x: 0.144062297, y: null}, {x: 0.170068027, y: null}, {x: 0.189591078, y: null}, {x: 0.361147327, y: null}, {x: 0.241765943, y: null}, {x: 0.151111111, y: null}, {x: 0.236786469, y: null}, {x: 0.120124805, y: null}, {x: 0.067915691, y: null}, {x: 0.204896907, y: null}, {x: 0.155991736, y: null}, {x: 0.19140625, y: null}, {x: 0.263908702, y: null}, {x: 0.108739837, y: null}, {x: 0.102564103, y: null}, {x: 0.147704591, y: null}, {x: 0.252559727, y: null}, {x: 0.18877551, y: null}, {x: 0.298319328, y: null}, {x: 0.271223022, y: null}, {x: 0.197781885, y: null}, {x: 0.132408575, y: null}, {x: 0.284571429, y: null}, {x: 0.226586103, y: null}, {x: 0.145098039, y: null}, {x: 0.129360465, y: null}, {x: 0.197867299, y: null}, {x: 0.154308617, y: null}, {x: 0.219548872, y: null}, {x: 0.243010753, y: null}, {x: 0.211058264, y: null}, {x: 0.179372197, y: null}, {x: 0.150867824, y: null}, {x: 0.193627451, y: null}, {x: 0.102760736, y: null}, {x: 0.24948025, y: null}, {x: 0.078291815, y: null}, {x: 0.306818182, y: null}, {x: 0.040133779, y: null}, {x: 0.095512083, y: null}, {x: 0.210982659, y: null}, {x: 0.211701309, y: null}, {x: 0.423970433, y: null}, {x: 0.080788177, y: null}, {x: 0.147515528, y: null}, {x: 0.100522193, y: null}, {x: 0.195862069, y: null}, {x: 0.141674333, y: null}, {x: 0.009746589, y: null}, {x: 0.025450689, y: null}, {x: 0.244771495, y: null}, {x: 0.034269663, y: null}, {x: 0.038180797, y: null}, {x: 0.046370968, y: null}, {x: 0.199263933, y: null}, {x: 0.163456533, y: null}, {x: 0.215189873, y: null}, {x: 0.126600985, y: null}, {x: 0.042480884, y: null}, {x: 0.112525117, y: null}, {x: 0.137198068, y: null}, {x: 0.009929078, y: null}, {x: 0.028089888, y: null}, {x: 0.00998004, y: null}, {x: 0.0, y: null}, {x: 0.023186238, y: null}, {x: 0.037634409, y: null}, {x: 0.097676874, y: null}, {x: 0.336879433, y: null}, {x: 0.135643298, y: null}, {x: 0.116852613, y: null}, {x: 0.23342416, y: null}, {x: 0.173665792, y: null}, {x: 0.035449299, y: null}, {x: 0.121384005, y: null}, {x: 0.070338421, y: null}, {x: 0.134317343, y: null}, {x: 0.057983943, y: null}, {x: 0.094017094, y: null}, {x: 0.134107286, y: null}, {x: 0.166007905, y: null}, {x: 0.295497781, y: null}, {x: 0.168582376, y: null}, {x: 0.127955494, y: null}, {x: 0.043971144, y: null}, {x: 0.150645624, y: null}, {x: 0.347122302, y: null}, {x: 0.253016086, y: null}, {x: 0.323897659, y: null}, {x: 0.133274493, y: null}, {x: 0.175303197, y: null}, {x: 0.033878505, y: null}, {x: 0.031158715, y: null}, {x: 0.277942046, y: null}, {x: 0.154488518, y: null}, {x: 0.431518152, y: null}, {x: 0.538291605, y: null}, {x: 0.261939219, y: null}, {x: 0.52178771, y: null}, {x: 0.213937622, y: null}, {x: 0.334791059, y: null}, {x: 0.543255132, y: null}, {x: 0.321678322, y: null}, {x: 0.434724092, y: null}, {x: 0.535338346, y: null}, {x: 0.152142857, y: null}, {x: 0.553892216, y: null}, {x: 0.145070423, y: null}, {x: 0.212456052, y: 33.039}, {x: 0.146570397, y: null}, {x: 0.495114007, y: null}, {x: 0.385745775, y: null}, {x: 0.551626591, y: null}, {x: 0.325, y: null}, {x: 0.526470588, y: null}, {x: 0.179633144, y: null}, {x: 0.122650376, y: null}, {x: 0.154534364, y: null}, {x: 0.345938375, y: null}, {x: 0.115569823, y: null}, {x: 0.193078324, y: null}, {x: 0.108669834, y: null}, {x: 0.14622057, y: null}, {x: 0.061983471, y: null}, {x: 0.117103236, y: null}, {x: 0.270594109, y: null}, {x: 0.107970784, y: null}, {x: 0.023195876, y: null}, {x: 0.142276423, y: null}, {x: 0.0995, y: null}, {x: 0.0, y: null}, {x: 0.105387803, y: null}, {x: 0.149651497, y: null}, {x: 0.110300081, y: null}, {x: 0.428510457, y: null}, {x: 0.303482587, y: null}, {x: 0.261183261, y: null}, {x: 0.125142857, y: null}, {x: 0.184031159, y: null}, {x: 0.106420405, y: null}, {x: 0.056272586, y: null}, {x: 0.093579978, y: null}, {x: 0.380517504, y: null}, {x: 0.03803132, y: null}, {x: 0.071298654, y: null}, {x: 0.041522491, y: null}, {x: 0.248221344, y: null}, {x: 0.131021195, y: null}, {x: 0.136246787, y: null}, {x: 0.038970588, y: null}, {x: 0.0, y: null}, {x: 0.033909149, y: null}, {x: 0.184305627, y: null}, {x: 0.148854962, y: null}, {x: 0.089928058, y: null}, {x: 0.332777778, y: null}, {x: 0.077930175, y: null}, {x: 0.300761421, y: null}, {x: 0.142760487, y: null}, {x: 0.074525745, y: null}, {x: 0.117110266, y: null}, {x: 0.188489209, y: null}, {x: 0.17903365, y: null}, {x: 0.03006012, y: null}, {x: 0.099131323, y: null}, {x: 0.081081081, y: null}, {x: 0.030331754, y: null}, {x: 0.311679337, y: null}, {x: 0.556321839, y: null}, {x: 0.537262873, y: null}, {x: 0.385205232, y: null}, {x: 0.367763905, y: null}, {x: 0.473902728, y: null}, {x: 0.183923706, y: null}, {x: 0.313021703, y: null}, {x: 0.093062606, y: null}, {x: 0.283836417, y: null}, {x: 0.142016807, y: null}, {x: 0.144469526, y: null}, {x: 0.183785343, y: null}, {x: 0.0, y: null}, {x: 0.215488216, y: null}, {x: 0.358087487, y: null}, {x: 0.088235294, y: null}, {x: 0.209141274, y: null}, {x: 0.135629709, y: 999.999999}, {x: 0.036441586, y: null}, {x: 0.089395267, y: null}, {x: 0.079268293, y: null}, {x: 0.178104575, y: null}, {x: 0.200087758, y: null}, {x: 0.035839161, y: null}, {x: 0.035991531, y: null}, {x: 0.28002414, y: null}, {x: 0.211298606, y: null}, {x: 0.105501618, y: null}, {x: 0.120287253, y: null}, {x: 0.050678087, y: null}, {x: 0.140625, y: null}, {x: 0.148466717, y: null}, {x: 0.093869732, y: null}, {x: 0.356367226, y: null}, {x: 0.686293436, y: null}, {x: 0.059957173, y: null}, {x: 0.205405405, y: null}, {x: 0.224552745, y: null}, {x: 0.434892541, y: null}, {x: 0.624816805, y: null}, {x: 0.6700611, y: null}, {x: 0.741833509, y: null}, {x: 0.379722621, y: null}, {x: 0.550424128, y: 95.803564}, {x: 0.177818515, y: null}, {x: 0.442614771, y: 1904.333217}, {x: 0.605597964, y: null}, {x: 0.788187373, y: null}, {x: 0.161825726, y: 33.812967}, {x: 0.594850949, y: null}, {x: 0.367713005, y: null}, {x: 0.541341654, y: null}, {x: 0.234375, y: 13.403297}, {x: 0.276821192, y: null}, {x: 0.639917696, y: null}, {x: 0.499451153, y: null}, {x: 0.533745492, y: null}, {x: 0.48988764, y: null}, {x: 0.218035825, y: null}, {x: 0.232484076, y: null}, {x: 0.205567452, y: null}, {x: 0.322404372, y: null}, {x: 0.433115824, y: null}, {x: 0.222574509, y: null}, {x: 0.748043819, y: null}, {x: 0.355035605, y: null}, {x: 0.48280943, y: null}, {x: 0.375722543, y: null}, {x: 0.1, y: null}, {x: 0.600938967, y: 29.512963}, {x: 0.389929742, y: null}, {x: 0.414154653, y: null}, {x: 0.660397074, y: null}, {x: 0.875912409, y: null}, {x: 0.516514127, y: null}, {x: 0.707711443, y: null}, {x: 0.547239264, y: null}, {x: 0.43877551, y: null}, {x: 0.747628084, y: null}, {x: 0.57496977, y: null}, {x: 0.624087591, y: null}, {x: 0.399719495, y: null}, {x: 0.76477146, y: null}, {x: 0.562366358, y: null}, {x: 0.443811075, y: null}, {x: 0.347487615, y: null}, {x: 0.438639125, y: null}, {x: 0.433465086, y: null}, {x: 0.097334878, y: null}, {x: 0.295546559, y: null}, {x: 0.27631579, y: null}, {x: 0.198875615, y: null}, {x: 0.513611615, y: null}, {x: 0.253521127, y: null}, {x: 0.467727675, y: null}, {x: 0.314814815, y: null}, {x: 0.275147929, y: null}, {x: 0.419631902, y: 292.744127}, {x: 0.655295316, y: 194.570504}, {x: 0.243040212, y: 443.440785}, {x: 0.674610449, y: null}, {x: 0.498817967, y: null}, {x: 0.323834197, y: null}, {x: 0.602385686, y: null}, {x: 0.352468427, y: null}, {x: 0.163748713, y: null}, {x: 0.042495479, y: null}, {x: 0.449458484, y: null}, {x: 0.109938435, y: null}, {x: 0.212871287, y: null}, {x: 0.083380925, y: null}, {x: 0.103698583, y: null}, {x: 0.053333333, y: null}, {x: 0.036954915, y: null}, {x: 0.099589322, y: null}, {x: 0.172568355, y: null}, {x: 0.180991736, y: null}, {x: 0.070634921, y: null}, {x: 0.106923077, y: null}, {x: 0.102112676, y: null}, {x: 0.091269841, y: null}, {x: 0.075156576, y: null}, {x: 0.072243346, y: null}, {x: 0.273972603, y: null}, {x: 0.174870466, y: null}, {x: 0.29314888, y: null}, {x: 0.050717703, y: null}, {x: 0.242591316, y: null}, {x: 0.133825944, y: null}, {x: 0.123239437, y: null}, {x: 0.216426193, y: null}, {x: 0.061816653, y: null}, {x: 0.054067219, y: null}, {x: 0.122442134, y: null}, {x: 0.022556391, y: null}, {x: 0.150758252, y: null}, {x: 0.172043011, y: null}, {x: 0.295297372, y: null}, {x: 0.238056013, y: null}, {x: 0.118386817, y: null}, {x: 0.138788427, y: null}, {x: 0.069073783, y: null}, {x: 0.211398964, y: null}, {x: 0.115089514, y: null}, {x: 0.066132265, y: null}, {x: 0.112410656, y: null}, {x: 0.07956778, y: null}, {x: 0.26761062, y: null}, {x: 0.485549133, y: null}, {x: 0.192277384, y: null}, {x: 0.259505703, y: null}, {x: 0.12866242, y: null}, {x: 0.224691358, y: null}, {x: 0.25716385, y: null}, {x: 0.204951857, y: null}, {x: 0.110807114, y: null}, {x: 0.410476191, y: 0.12512}, {x: 0.397526502, y: null}, {x: 0.076559546, y: null}, {x: 0.314787701, y: 5.77926}, {x: 0.421862348, y: null}, {x: 0.228301887, y: null}, {x: 0.095679012, y: null}, {x: 0.10554951, y: null}, {x: 0.375905797, y: null}, {x: 0.500721501, y: null}, {x: 0.451692308, y: null}, {x: 0.647188534, y: null}, {x: 0.377745242, y: null}, {x: 0.554154303, y: 734.949067}, {x: 0.651245552, y: null}, {x: 0.408196721, y: null}, {x: 0.677804296, y: null}, {x: 0.662087912, y: null}, {x: 0.67641129, y: null}, {x: 0.44057971, y: null}, {x: 0.41962775, y: null}, {x: 0.853675946, y: null}, {x: 0.206762029, y: null}, {x: 0.333333333, y: null}, {x: 0.108066184, y: null}, {x: 0.36872869, y: null}, {x: 0.625707357, y: null}, {x: 0.51184346, y: null}, {x: 0.206841687, y: null}, {x: 0.490566038, y: null}, {x: 0.628571429, y: 11.58294}, {x: 0.554341227, y: null}, {x: 0.512588117, y: 71.329358}, {x: 0.529080675, y: null}, {x: 0.509892086, y: null}, {x: 0.243816254, y: null}, {x: 0.561360875, y: null}, {x: 0.611918605, y: null}, {x: 0.221719457, y: null}, {x: 0.44375963, y: null}, {x: 0.159322034, y: null}, {x: 0.540511727, y: null}, {x: 0.211457456, y: null}, {x: 0.182598039, y: null}, {x: 0.619293078, y: null}, {x: 0.743551953, y: null}, {x: 0.310638298, y: null}, {x: 0.808792743, y: null}, {x: 0.663247863, y: null}, {x: 0.668859649, y: 148.959479}, {x: 0.720666667, y: null}, {x: 0.308189655, y: null}, {x: 0.6398641, y: null}, {x: 0.441485069, y: null}, {x: 0.315717227, y: null}, {x: 0.15008726, y: null}, {x: 0.263295554, y: null}, {x: 0.239147593, y: null}, {x: 0.325227964, y: null}, {x: 0.233396584, y: null}, {x: 0.781619654, y: null}, {x: 0.546171171, y: null}, {x: 0.250716332, y: null}, {x: 0.468686869, y: null}, {x: 0.435022026, y: 291.200847}, {x: 0.506972929, y: null}, {x: 0.461800819, y: null}, {x: 0.451120163, y: null}, {x: 0.723966119, y: 123.559491}, {x: 0.549773756, y: null}, {x: 0.366477273, y: 253.998766}, {x: 0.602469136, y: 25.889026}, {x: 0.335632184, y: null}, {x: 0.205188679, y: 32.36738}, {x: 0.094179894, y: 54.925090000000004}, {x: 0.152727273, y: null}, {x: 0.352447552, y: null}, {x: 0.078866769, y: null}, {x: 0.290153746, y: null}, {x: 0.126039667, y: null}, {x: 0.065929566, y: null}, {x: 0.094517958, y: null}, {x: 0.143900657, y: null}, {x: 0.156312625, y: null}, {x: 0.335219236, y: null}, {x: 0.330745342, y: null}, {x: 0.235877863, y: null}, {x: 0.184981685, y: null}, {x: 0.105099778, y: null}, {x: 0.03986711, y: null}, {x: 0.350682594, y: null}, {x: 0.046391753, y: null}, {x: 0.015042118, y: null}, {x: 0.066847335, y: null}, {x: 0.04549675, y: null}, {x: 0.104890605, y: null}, {x: 0.121355179, y: null}, {x: 0.214150048, y: null}, {x: 0.14379085, y: 40.416186}, {x: 0.440842788, y: null}, {x: 0.232837934, y: null}, {x: 0.081192189, y: null}, {x: 0.081823495, y: null}, {x: 0.197049526, y: null}, {x: 0.264011799, y: null}, {x: 0.602634468, y: null}, {x: 0.46895893, y: null}, {x: 0.129657228, y: null}, {x: 0.233810498, y: null}, {x: 0.221570926, y: null}, {x: 0.351077313, y: null}, {x: 0.08591674, y: null}, {x: 0.08753568, y: null}, {x: 0.101920236, y: null}, {x: 0.196679438, y: null}, {x: 0.077414773, y: null}, {x: 0.0, y: null}, {x: 0.065301605, y: null}, {x: 0.256315007, y: null}, {x: 0.175238095, y: null}, {x: 0.0, y: null}, {x: 0.406471183, y: null}, {x: 0.160388821, y: null}, {x: 0.110381078, y: null}, {x: 0.442328042, y: null}, {x: 0.284974093, y: null}, {x: 0.137784091, y: null}, {x: 0.261538462, y: null}, {x: 0.167650531, y: null}, {x: 0.50991832, y: null}, {x: 0.167852906, y: null}, {x: 0.200668896, y: null}, {x: 0.046357616, y: null}, {x: 0.24876115, y: null}, {x: 0.25142474, y: null}, {x: 0.0, y: null}, {x: 0.165856294, y: null}, {x: 0.261694058, y: null}, {x: 0.066869301, y: null}, {x: 0.066570188, y: null}, {x: 0.105263158, y: null}, {x: 0.0, y: null}, {x: 0.068891281, y: 1.80788}, {x: 0.233796296, y: null}, {x: 0.053456221, y: null}, {x: 0.154160982, y: null}, {x: 0.049940547, y: null}, {x: 0.183856502, y: null}, {x: 0.231845436, y: null}, {x: 0.12295082, y: null}, {x: 0.115600449, y: null}, {x: 0.020338983, y: null}, {x: 0.1875, y: null}, {x: 0.378303965, y: null}, {x: 0.04609475, y: null}, {x: 0.060844667, y: null}, {x: 0.038028169, y: null}, {x: 0.03894081, y: 1.335464}, {x: 0.0, y: null}, {x: 0.088560886, y: null}, {x: 0.0, y: null}, {x: 0.15542522, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059508409, y: null}, {x: 0.07254623, y: null}, {x: 0.0, y: null}, {x: 0.241678727, y: null}, {x: 0.0, y: null}, {x: 0.024134313, y: null}, {x: 0.17519305, y: null}, {x: 0.0, y: null}, {x: 0.330745342, y: null}, {x: 0.06624954, y: null}, {x: 0.388235294, y: null}, {x: 0.228197674, y: null}, {x: 0.122205663, y: null}, {x: 0.119383825, y: 0.072}, {x: 0.122574956, y: null}, {x: 0.011473963, y: null}, {x: 0.277742142, y: null}, {x: 0.348501665, y: null}, {x: 0.241352806, y: null}, {x: 0.331890332, y: null}, {x: 0.139247312, y: null}, {x: 0.286061588, y: null}, {x: 0.5, y: null}, {x: 0.477040816, y: null}, {x: 0.139833711, y: null}, {x: 0.260096931, y: null}, {x: 0.076660988, y: null}, {x: 0.28003003, y: null}, {x: 0.728533095, y: null}, {x: 0.468387097, y: null}, {x: 0.128997868, y: null}, {x: 0.087064677, y: null}, {x: 0.382847038, y: null}, {x: 0.088541667, y: null}, {x: 0.099383667, y: null}, {x: 0.258237548, y: null}, {x: 0.204038257, y: null}, {x: 0.30781759, y: null}, {x: 0.171601615, y: null}, {x: 0.354124749, y: null}, {x: 0.240371846, y: null}, {x: 0.191685912, y: null}, {x: 0.064888248, y: null}, {x: 0.265880218, y: null}, {x: 0.352604465, y: null}, {x: 0.239694008, y: null}, {x: 0.51790393, y: null}, {x: 0.290291262, y: null}, {x: 0.605022831, y: null}, {x: 0.191755725, y: null}, {x: 0.223675155, y: null}, {x: 0.291296625, y: null}, {x: 0.208872458, y: null}, {x: 0.102511881, y: null}, {x: 0.170873786, y: null}, {x: 0.28280543, y: null}, {x: 0.365260901, y: null}, {x: 0.513715711, y: null}, {x: 0.236525048, y: null}, {x: 0.121835443, y: null}, {x: 0.150914634, y: null}, {x: 0.098342541, y: null}, {x: 0.084821429, y: null}, {x: 0.284444444, y: null}, {x: 0.30106486, y: null}, {x: 0.027835052, y: null}, {x: 0.061639344, y: null}, {x: 0.354000693, y: null}, {x: 0.450224215, y: null}, {x: 0.759481961, y: null}, {x: 0.438571429, y: null}, {x: 0.126286249, y: null}, {x: 0.193333333, y: null}, {x: 0.208655332, y: null}, {x: 0.099694812, y: null}, {x: 0.322732627, y: null}, {x: 0.355742297, y: null}, {x: 0.042606516, y: 32.512411}, {x: 0.595081967, y: null}, {x: 0.190427699, y: null}, {x: 0.422920303, y: null}, {x: 0.247802428, y: null}, {x: 0.255568582, y: null}, {x: 0.427750411, y: null}, {x: 0.248835662, y: null}, {x: 0.336622807, y: null}, {x: 0.584225352, y: null}, {x: 0.419381788, y: null}, {x: 0.266603416, y: null}, {x: 0.28957265, y: null}, {x: 0.341797662, y: null}, {x: 0.424284717, y: null}, {x: 0.291300878, y: null}, {x: 0.452495974, y: null}, {x: 0.036617262, y: null}, {x: 0.310410095, y: null}, {x: 0.183041723, y: null}, {x: 0.131538462, y: null}, {x: 0.418300654, y: null}, {x: 0.240700219, y: null}, {x: 0.331983806, y: null}, {x: 0.671366594, y: null}, {x: 0.210191083, y: null}, {x: 0.248730965, y: null}, {x: 0.273449921, y: null}, {x: 0.319639842, y: null}, {x: 0.357723577, y: null}, {x: 0.235572375, y: null}, {x: 0.028384279, y: null}, {x: 0.49232159, y: null}, {x: 0.56680932, y: null}, {x: 0.728173667, y: null}, {x: 0.853629977, y: null}, {x: 0.566576819, y: null}, {x: 0.553406224, y: 144.338492}, {x: 0.558408216, y: null}, {x: 0.577137547, y: null}, {x: 0.595535128, y: null}, {x: 0.52321297, y: null}, {x: 0.453304598, y: null}, {x: 0.285923754, y: null}, {x: 0.139382601, y: null}, {x: 0.488148623, y: null}, {x: 0.189354276, y: null}, {x: 0.283494105, y: null}, {x: 0.069550467, y: null}, {x: 0.115625, y: null}, {x: 0.173913044, y: null}, {x: 0.05707196, y: null}, {x: 0.054794521, y: null}, {x: 0.047890536, y: null}, {x: 0.0, y: null}, {x: 0.038501561, y: null}, {x: 0.3282881, y: null}, {x: 0.372767857, y: null}, {x: 0.364224138, y: null}, {x: 0.03909465, y: null}, {x: 0.250643777, y: null}, {x: 0.137000519, y: null}, {x: 0.107705407, y: null}, {x: 0.242424242, y: null}, {x: 0.20891905, y: null}, {x: 0.004942339, y: null}, {x: 0.242105263, y: null}, {x: 0.008240141, y: null}, {x: 0.073412698, y: null}, {x: 0.128055879, y: null}, {x: 0.010791367, y: null}, {x: 0.374384237, y: null}, {x: 0.055157593, y: null}, {x: 0.078301261, y: null}, {x: 0.081294964, y: null}, {x: 0.006237006, y: null}, {x: 0.123500353, y: null}, {x: 0.126582279, y: null}, {x: 0.059669686, y: null}, {x: 0.0, y: null}, {x: 0.208034433, y: null}, {x: 0.126498801, y: null}, {x: 0.065919862, y: null}, {x: 0.12458138, y: null}, {x: 0.272670808, y: null}, {x: 0.142638037, y: null}, {x: 0.166266218, y: null}, {x: 0.0, y: null}, {x: 0.24361949, y: null}, {x: 0.276685393, y: null}, {x: 0.125834128, y: null}, {x: 0.226351351, y: null}, {x: 0.030082988, y: null}, {x: 0.21174206, y: null}, {x: 0.064173592, y: null}, {x: 0.089564174, y: null}, {x: 0.226962457, y: null}, {x: 0.237799043, y: null}, {x: 0.225, y: null}, {x: 0.21668533, y: null}, {x: 0.506993007, y: null}, {x: 0.575586095, y: null}, {x: 0.147880041, y: null}, {x: 0.031620553, y: null}, {x: 0.250886525, y: null}, {x: 0.250726744, y: null}, {x: 0.415909091, y: null}, {x: 0.180678466, y: null}, {x: 0.17312253, y: null}, {x: 0.197667281, y: null}, {x: 0.26823135, y: null}, {x: 0.13174404, y: null}, {x: 0.204637097, y: null}, {x: 0.073013601, y: null}, {x: 0.071913161, y: null}, {x: 0.179347826, y: null}, {x: 0.192756292, y: null}, {x: 0.05982906, y: null}, {x: 0.151818182, y: null}, {x: 0.059722886, y: null}, {x: 0.0, y: null}, {x: 0.225106182, y: null}, {x: 0.102136182, y: null}, {x: 0.205702648, y: null}, {x: 0.031867431, y: null}, {x: 0.124734607, y: null}, {x: 0.123523622, y: null}, {x: 0.0075, y: null}, {x: 0.073198847, y: null}, {x: 0.109530583, y: null}, {x: 0.025334272, y: null}, {x: 0.093762108, y: null}, {x: 0.148533586, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034431138, y: null}, {x: 0.147837043, y: null}, {x: 0.087900724, y: null}, {x: 0.139561707, y: null}, {x: 0.081692913, y: null}, {x: 0.077028886, y: null}, {x: 0.097605893, y: null}, {x: 0.118259224, y: null}, {x: 0.0, y: null}, {x: 0.400275103, y: null}, {x: 0.097457627, y: null}, {x: 0.029874214, y: null}, {x: 0.099903007, y: null}, {x: 0.250535332, y: null}, {x: 0.072360617, y: null}, {x: 0.053750738, y: null}, {x: 0.095398429, y: null}, {x: 0.062588905, y: null}, {x: 0.34470377, y: null}, {x: 0.189873418, y: null}, {x: 0.121803812, y: null}, {x: 0.042997543, y: null}, {x: 0.134656489, y: null}, {x: 0.151436031, y: null}, {x: 0.099447514, y: null}, {x: 0.047482014, y: null}, {x: 0.104932735, y: null}, {x: 0.449386503, y: null}, {x: 0.340096618, y: null}, {x: 0.281512605, y: null}, {x: 0.213530655, y: null}, {x: 0.187751813, y: null}, {x: 0.131736527, y: null}, {x: 0.707762557, y: null}, {x: 0.238145416, y: null}, {x: 0.535496957, y: null}, {x: 0.440976934, y: null}, {x: 0.062064156, y: null}, {x: 0.039069767, y: null}, {x: 0.345594525, y: null}, {x: 0.046544429, y: null}, {x: 0.282194849, y: null}, {x: 0.203883495, y: null}, {x: 0.080932203, y: null}, {x: 0.236886633, y: null}, {x: 0.170178282, y: null}, {x: 0.119824341, y: null}, {x: 0.05875576, y: null}, {x: 0.0, y: null}, {x: 0.070175439, y: null}, {x: 0.108490566, y: null}, {x: 0.043960924, y: null}, {x: 0.063049853, y: null}, {x: 0.08925144, y: null}, {x: 0.246666667, y: null}, {x: 0.080424886, y: null}, {x: 0.119806763, y: null}, {x: 0.236170213, y: null}, {x: 0.134193548, y: null}, {x: 0.053747161, y: null}, {x: 0.244140625, y: null}, {x: 0.023822128, y: null}, {x: 0.105835806, y: 0.89}, {x: 0.125886525, y: null}, {x: 0.305578011, y: null}, {x: 0.366630077, y: null}, {x: 0.493297587, y: 0.18}, {x: 0.361190613, y: null}, {x: 0.231748158, y: 0.276}, {x: 0.313868613, y: null}, {x: 0.466990291, y: null}, {x: 0.396423249, y: null}, {x: 0.507042254, y: null}, {x: 0.185768604, y: null}, {x: 0.095192308, y: null}, {x: 0.129746835, y: null}, {x: 0.143474503, y: null}, {x: 0.011997177, y: null}, {x: 0.049760766, y: null}, {x: 0.147965475, y: null}, {x: 0.067164179, y: null}, {x: 0.121348315, y: null}, {x: 0.164165103, y: null}, {x: 0.154113557, y: null}, {x: 0.219512195, y: null}, {x: 0.182285714, y: null}, {x: 0.223905724, y: null}, {x: 0.110701107, y: null}, {x: 0.108206246, y: null}, {x: 0.260482846, y: null}, {x: 0.202933985, y: null}, {x: 0.13836478, y: null}, {x: 0.056629093, y: null}, {x: 0.170833333, y: null}, {x: 0.701098901, y: 176.54059600000002}, {x: 0.514604151, y: null}, {x: 0.267631774, y: null}, {x: 0.440956652, y: null}, {x: 0.259455371, y: null}, {x: 0.475813544, y: null}, {x: 0.484114977, y: null}, {x: 0.498961578, y: null}, {x: 0.575031526, y: null}, {x: 0.844114528, y: null}, {x: 0.678059537, y: null}, {x: 0.697875688, y: null}, {x: 0.483846732, y: null}, {x: 0.156104069, y: null}, {x: 0.39964943, y: null}, {x: 0.653104925, y: null}, {x: 0.223904383, y: null}, {x: 0.534025375, y: null}, {x: 0.449973531, y: null}, {x: 0.241695304, y: null}, {x: 0.430475087, y: null}, {x: 0.379116466, y: null}, {x: 0.531739812, y: null}, {x: 0.430260047, y: null}, {x: 0.59377494, y: null}, {x: 0.702757229, y: null}, {x: 0.842821782, y: 6.126247}, {x: 0.587531172, y: null}, {x: 0.694528875, y: null}, {x: 0.583429229, y: null}, {x: 0.223314607, y: null}, {x: 0.663216011, y: null}, {x: 0.699239544, y: null}, {x: 0.600928074, y: null}, {x: 0.453580902, y: null}, {x: 0.642537056, y: null}, {x: 0.30043384, y: null}, {x: 0.442571128, y: null}, {x: 0.385982231, y: null}, {x: 0.361809045, y: null}, {x: 0.599766628, y: null}, {x: 0.564878496, y: null}, {x: 0.37716263, y: null}, {x: 0.437322745, y: null}, {x: 0.403703704, y: 38.4927}, {x: 0.460820896, y: null}, {x: 0.408071749, y: null}, {x: 0.542607429, y: null}, {x: 0.191560244, y: null}, {x: 0.72091131, y: null}, {x: 0.446225785, y: null}, {x: 0.326041667, y: null}, {x: 0.45392022, y: null}, {x: 0.431778929, y: null}, {x: 0.181268012, y: null}, {x: 0.246018671, y: null}, {x: 0.323624596, y: null}, {x: 0.395196507, y: null}, {x: 0.369465649, y: null}, {x: 0.039898132, y: null}, {x: 0.01253012, y: null}, {x: 0.110054348, y: null}, {x: 0.351037344, y: null}, {x: 0.294650561, y: null}, {x: 0.141031493, y: null}, {x: 0.030372058, y: null}, {x: 0.151339609, y: null}, {x: 0.571428571, y: null}, {x: 0.191186441, y: null}, {x: 0.109243698, y: null}, {x: 0.519886364, y: null}, {x: 0.107263514, y: null}, {x: 0.422110553, y: null}, {x: 0.389270977, y: null}, {x: 0.443122677, y: null}, {x: 0.1172771, y: null}, {x: 0.472616633, y: null}, {x: 0.327967807, y: null}, {x: 0.279646018, y: null}, {x: 0.272084806, y: null}, {x: 0.183970856, y: null}, {x: 0.557692308, y: null}, {x: 0.142857143, y: null}, {x: 0.102181401, y: null}, {x: 0.261257607, y: null}, {x: 0.114620939, y: null}, {x: 0.079096045, y: null}, {x: 0.075413223, y: null}, {x: 0.025963808, y: null}, {x: 0.0, y: null}, {x: 0.108818011, y: null}, {x: 0.247819767, y: null}, {x: 0.170141785, y: null}, {x: 0.042908224, y: null}, {x: 0.260135135, y: null}, {x: 0.213114754, y: null}, {x: 0.087719298, y: 57.7297}, {x: 0.146325879, y: null}, {x: 0.06626506, y: null}, {x: 0.143484627, y: null}, {x: 0.210211408, y: null}, {x: 0.321296296, y: null}, {x: 0.284165699, y: null}, {x: 0.217503218, y: null}, {x: 0.037260826, y: null}, {x: 0.081818182, y: null}, {x: 0.036929057, y: null}, {x: 0.103345725, y: null}, {x: 0.0659945, y: null}, {x: 0.00551655, y: null}, {x: 0.00818148, y: null}, {x: 0.0, y: null}, {x: 0.121928166, y: null}, {x: 0.020486556, y: null}, {x: 0.09212963, y: null}, {x: 0.099863201, y: null}, {x: 0.002478315, y: null}, {x: 0.231884058, y: null}, {x: 0.203328509, y: null}, {x: 0.124282983, y: null}, {x: 0.072265625, y: null}, {x: 0.131716595, y: null}, {x: 0.032950574, y: null}, {x: 0.020357143, y: null}, {x: 0.036649215, y: null}, {x: 0.146734521, y: null}, {x: 0.119365609, y: null}, {x: 0.048291233, y: null}, {x: 0.07898773, y: null}, {x: 0.156801662, y: null}, {x: 0.054852321, y: null}, {x: 0.043158411, y: null}, {x: 0.044487427, y: null}, {x: 0.0, y: null}, {x: 0.455776173, y: null}, {x: 0.767064846, y: 26.852272}, {x: 0.769824561, y: 17.432869}, {x: 0.377962085, y: null}, {x: 0.455019557, y: null}, {x: 0.481481482, y: 2.114101}, {x: 0.082802548, y: null}, {x: 0.291005291, y: 27.576203}, {x: 0.081259151, y: null}, {x: 0.018018018, y: null}, {x: 0.067116927, y: null}, {x: 0.106221548, y: null}, {x: 0.06993007, y: null}, {x: 0.049368542, y: null}, {x: 0.293002916, y: null}, {x: 0.022937063, y: null}, {x: 0.134020619, y: null}, {x: 0.370629371, y: null}, {x: 0.099415205, y: null}, {x: 0.027114267, y: null}, {x: 0.083705357, y: null}, {x: 0.171150972, y: null}, {x: 0.0625, y: null}, {x: 0.344385833, y: null}, {x: 0.274220963, y: null}, {x: 0.432973316, y: 9.574524}, {x: 0.280686318, y: null}, {x: 0.575692042, y: null}, {x: 0.477936607, y: 17.33541}, {x: 0.101402373, y: null}, {x: 0.225555556, y: null}, {x: 0.735171262, y: null}, {x: 0.276973377, y: null}, {x: 0.222515391, y: null}, {x: 0.097749196, y: 19.605847}, {x: 0.193612775, y: null}, {x: 0.242599743, y: 0.363247}, {x: 0.231019523, y: null}, {x: 0.09132948, y: 51.7282}, {x: 0.336648814, y: null}, {x: 0.073515551, y: null}, {x: 0.443119266, y: null}, {x: 0.064880568, y: null}, {x: 0.171759747, y: null}, {x: 0.152, y: null}, {x: 0.130620985, y: null}, {x: 0.073843416, y: null}, {x: 0.040244524, y: null}, {x: 0.052049747, y: null}, {x: 0.062203791, y: null}, {x: 0.074652778, y: null}, {x: 0.206225681, y: null}, {x: 0.137598598, y: null}, {x: 0.034639927, y: null}, {x: 0.064876957, y: null}, {x: 0.027135678, y: null}, {x: 0.080921053, y: null}, {x: 0.01179941, y: null}, {x: 0.083467095, y: null}, {x: 0.09602649, y: null}, {x: 0.089690722, y: null}, {x: 0.144578313, y: null}, {x: 0.179343475, y: null}, {x: 0.154447115, y: null}, {x: 0.193387159, y: null}, {x: 0.058727569, y: null}, {x: 0.253367543, y: null}, {x: 0.110105581, y: null}, {x: 0.238904627, y: null}, {x: 0.396039604, y: null}, {x: 0.313856427, y: null}, {x: 0.050810811, y: null}, {x: 0.078746177, y: null}, {x: 0.217809868, y: null}, {x: 0.18401487, y: null}, {x: 0.050649351, y: null}, {x: 0.153535354, y: null}, {x: 0.094250707, y: null}, {x: 0.115471358, y: null}, {x: 0.042207792, y: null}, {x: 0.076076555, y: null}, {x: 0.049311927, y: null}, {x: 0.042461005, y: null}, {x: 0.260626398, y: null}, {x: 0.0, y: null}, {x: 0.114527629, y: null}, {x: 0.425222312, y: null}, {x: 0.058897243, y: null}, {x: 0.071672355, y: null}, {x: 0.029213483, y: null}, {x: 0.133333333, y: null}, {x: 0.057350565, y: null}, {x: 0.125, y: null}, {x: 0.061702128, y: null}, {x: 0.098441345, y: null}, {x: 0.220138203, y: null}, {x: 0.104651163, y: null}, {x: 0.048260382, y: null}, {x: 0.030064913, y: null}, {x: 0.172235023, y: null}, {x: 0.060266293, y: null}, {x: 0.0, y: null}, {x: 0.284313726, y: null}, {x: 0.188615123, y: null}, {x: 0.202603743, y: null}, {x: 0.293163384, y: null}, {x: 0.168717048, y: null}, {x: 0.271302645, y: null}, {x: 0.203170875, y: null}, {x: 0.265473527, y: null}, {x: 0.136422977, y: null}, {x: 0.196226415, y: null}, {x: 0.265129683, y: null}, {x: 0.271834061, y: null}, {x: 0.216467464, y: null}, {x: 0.305578011, y: null}, {x: 0.161137441, y: null}, {x: 0.43122102, y: null}, {x: 0.384773663, y: null}, {x: 0.242376857, y: null}, {x: 0.546369518, y: null}, {x: 0.25950783, y: null}, {x: 0.139261745, y: null}, {x: 0.211753731, y: null}, {x: 0.204545455, y: 0.751364}, {x: 0.575102881, y: null}, {x: 0.202949438, y: null}, {x: 0.358823529, y: null}, {x: 0.139931741, y: null}, {x: 0.210769231, y: 0.6538919999999999}, {x: 0.269709544, y: null}, {x: 0.094867807, y: null}, {x: 0.242771084, y: null}, {x: 0.516574586, y: null}, {x: 0.185160867, y: null}, {x: 0.305657605, y: null}, {x: 0.096399535, y: null}, {x: 0.132275132, y: null}, {x: 0.210355987, y: null}, {x: 0.130882353, y: null}, {x: 0.277289837, y: null}, {x: 0.444444444, y: null}, {x: 0.145325203, y: null}, {x: 0.133266533, y: null}, {x: 0.103599649, y: null}, {x: 0.09502924, y: null}, {x: 0.527831094, y: null}, {x: 0.28021555, y: null}, {x: 0.320848939, y: null}, {x: 0.353012048, y: null}, {x: 0.452502554, y: null}, {x: 0.261658031, y: null}, {x: 0.463980464, y: null}, {x: 0.487743026, y: null}, {x: 0.317254174, y: null}, {x: 0.552440291, y: null}, {x: 0.390855457, y: null}, {x: 0.188787185, y: null}, {x: 0.213510253, y: null}, {x: 0.131593559, y: null}, {x: 0.122399021, y: null}, {x: 0.096134787, y: null}, {x: 0.336466165, y: null}, {x: 0.267213115, y: null}, {x: 0.575104728, y: null}, {x: 0.536531365, y: null}, {x: 0.28406633, y: null}, {x: 0.304469274, y: null}, {x: 0.588888889, y: 19.621000000000002}, {x: 0.522004062, y: null}, {x: 0.591706539, y: null}, {x: 0.200867052, y: null}, {x: 0.520090978, y: null}, {x: 0.296116505, y: null}, {x: 0.332026144, y: null}, {x: 0.44895288, y: null}, {x: 0.32325414, y: null}, {x: 0.566037736, y: null}, {x: 0.57354618, y: null}, {x: 0.371962617, y: null}, {x: 0.490015361, y: null}, {x: 0.551122195, y: null}, {x: 0.069345942, y: null}, {x: 0.269148175, y: null}, {x: 0.576488706, y: null}, {x: 0.615754083, y: null}, {x: 0.387298748, y: null}, {x: 0.077970297, y: null}, {x: 0.764534884, y: null}, {x: 0.828220859, y: null}, {x: 0.818820225, y: null}, {x: 0.746081505, y: null}, {x: 0.793846154, y: 37.631}, {x: 0.830141549, y: null}, {x: 0.856720827, y: null}, {x: 0.802768166, y: null}, {x: 0.71741573, y: null}, {x: 0.668956044, y: null}, {x: 0.743458839, y: 739.527068}, {x: 0.403005465, y: null}, {x: 0.408921933, y: null}, {x: 0.84516129, y: null}, {x: 0.932765152, y: null}, {x: 0.47826087, y: null}, {x: 0.626996805, y: null}, {x: 0.643668122, y: null}, {x: 0.527979275, y: null}, {x: 0.328125, y: null}, {x: 0.713407134, y: null}, {x: 0.429123001, y: null}, {x: 0.492917847, y: null}, {x: 0.45534407, y: null}, {x: 0.366808109, y: null}, {x: 0.246478873, y: null}, {x: 0.151224707, y: null}, {x: 0.227979275, y: null}, {x: 0.753797468, y: null}, {x: 0.525612472, y: null}, {x: 0.629826898, y: null}, {x: 0.478316327, y: null}, {x: 0.552777778, y: null}, {x: 0.303106633, y: null}, {x: 0.152724482, y: null}, {x: 0.2092257, y: null}, {x: 0.272527473, y: null}, {x: 0.328458257, y: null}, {x: 0.509739067, y: null}, {x: 0.093291405, y: null}, {x: 0.068743287, y: null}, {x: 0.171389081, y: null}, {x: 0.250231696, y: null}, {x: 0.09556314, y: null}, {x: 0.253754941, y: null}, {x: 0.626960193, y: null}, {x: 0.150627615, y: null}, {x: 0.135106383, y: null}, {x: 0.422184007, y: null}, {x: 0.722543353, y: null}, {x: 0.625109745, y: null}, {x: 0.810502283, y: null}, {x: 0.188405797, y: null}, {x: 0.525821596, y: null}, {x: 0.864829396, y: null}, {x: 0.648395722, y: null}, {x: 0.590804598, y: null}, {x: 0.59139785, y: null}, {x: 0.629148629, y: null}, {x: 0.887456038, y: 27.040660999999997}, {x: 0.830671989, y: 81.680767}, {x: 0.607107601, y: null}, {x: 0.568047337, y: null}, {x: 0.760493827, y: null}, {x: 0.758784426, y: 198.331469}, {x: 0.744067797, y: null}, {x: 0.775330397, y: null}, {x: 0.282229965, y: null}, {x: 0.401709402, y: null}, {x: 0.308243728, y: null}, {x: 0.188108108, y: null}, {x: 0.550344828, y: null}, {x: 0.518703242, y: null}, {x: 0.595276873, y: 7.279}, {x: 0.657028112, y: null}, {x: 0.904255319, y: null}, {x: 0.494623656, y: null}, {x: 0.55884025, y: null}, {x: 0.62118019, y: null}, {x: 0.758812616, y: null}, {x: 0.571428571, y: null}, {x: 0.013079667, y: null}, {x: 0.096311475, y: null}, {x: 0.161959654, y: null}, {x: 0.414634146, y: null}, {x: 0.181139122, y: null}, {x: 0.115853659, y: null}, {x: 0.149874055, y: null}, {x: 0.006256517, y: null}, {x: 0.319655857, y: null}, {x: 0.30418251, y: null}, {x: 0.231316726, y: null}, {x: 0.182841069, y: null}, {x: 0.61958457, y: null}, {x: 0.599858857, y: null}, {x: 0.250772082, y: null}, {x: 0.471014493, y: null}, {x: 0.286542923, y: null}, {x: 0.159032613, y: null}, {x: 0.124767225, y: null}, {x: 0.338235294, y: null}, {x: 0.4717477, y: null}, {x: 0.24742268, y: null}, {x: 0.372901679, y: null}, {x: 0.269512195, y: null}, {x: 0.378735233, y: null}, {x: 0.124608968, y: null}, {x: 0.270440252, y: null}, {x: 0.293838863, y: null}, {x: 0.27100271, y: null}, {x: 0.186179326, y: null}, {x: 0.25160188, y: null}, {x: 0.065934066, y: null}, {x: 0.212643678, y: null}, {x: 0.130984043, y: null}, {x: 0.143646409, y: null}, {x: 0.132661183, y: null}, {x: 0.405769231, y: null}, {x: 0.477355073, y: null}, {x: 0.133263379, y: null}, {x: 0.173192771, y: null}, {x: 0.15261959, y: 1.005625}, {x: 0.039344262, y: null}, {x: 0.447310243, y: null}, {x: 0.24972973, y: null}, {x: 0.540861813, y: null}, {x: 0.38902148, y: 21.590654999999998}, {x: 0.551764706, y: 2.36377}, {x: 0.240875912, y: null}, {x: 0.590372389, y: 69.454067}, {x: 0.582191781, y: null}, {x: 0.156033287, y: null}, {x: 0.238568589, y: null}, {x: 0.425517702, y: null}, {x: 0.518569464, y: null}, {x: 0.243243243, y: null}, {x: 0.126702997, y: null}, {x: 0.283415842, y: null}, {x: 0.084016393, y: 4.023005}, {x: 0.058216654, y: null}, {x: 0.742090125, y: 15.273601}, {x: 0.503474904, y: null}, {x: 0.130693069, y: null}, {x: 0.463446475, y: null}, {x: 0.213302752, y: null}, {x: 0.408510638, y: 17.667698}, {x: 0.080453842, y: 130.09780700000002}, {x: 0.443373494, y: null}, {x: 0.172034564, y: null}, {x: 0.329143755, y: null}, {x: 0.222767419, y: null}, {x: 0.16568915, y: null}, {x: 0.233438486, y: null}, {x: 0.429588608, y: null}, {x: 0.152290076, y: 98.279335}, {x: 0.615189873, y: 0.465397}, {x: 0.0, y: null}, {x: 0.391818182, y: null}, {x: 0.343976778, y: null}, {x: 0.182981928, y: null}, {x: 0.182816538, y: null}, {x: 0.772769953, y: null}, {x: 0.612454213, y: null}, {x: 0.769387755, y: null}, {x: 0.925742574, y: null}, {x: 0.610204082, y: null}, {x: 0.81275441, y: 1.850684}, {x: 0.344902386, y: null}, {x: 0.870431894, y: null}, {x: 0.921259843, y: 211.675397}, {x: 0.581546459, y: null}, {x: 0.808118081, y: null}, {x: 0.67816092, y: null}, {x: 0.554759468, y: null}, {x: 0.107055961, y: null}, {x: 0.256445048, y: null}, {x: 0.176374077, y: 106.444359}, {x: 0.195470799, y: 2.454447}, {x: 0.064238411, y: null}, {x: 0.817941953, y: null}, {x: 0.805376344, y: null}, {x: 0.49871134, y: null}, {x: 0.133802817, y: null}, {x: 0.579635684, y: null}, {x: 0.077654517, y: null}, {x: 0.406214039, y: null}, {x: 0.207774799, y: null}, {x: 0.208432023, y: null}, {x: 0.186495177, y: null}, {x: 0.227573751, y: null}, {x: 0.404160476, y: 617.717181}, {x: 0.51648773, y: 0.620762}, {x: 0.614415675, y: null}, {x: 0.392712551, y: null}, {x: 0.392907801, y: null}, {x: 0.191472245, y: null}, {x: 0.388538682, y: null}, {x: 0.628257888, y: null}, {x: 0.291610284, y: null}, {x: 0.354231975, y: null}, {x: 0.363251482, y: null}, {x: 0.466850829, y: null}, {x: 0.292708888, y: null}, {x: 0.616052061, y: null}, {x: 0.43753015, y: null}, {x: 0.719957082, y: null}, {x: 0.239208633, y: null}, {x: 0.28988764, y: null}, {x: 0.140200286, y: null}, {x: 0.113428944, y: null}, {x: 0.006214689, y: null}, {x: 0.071482318, y: null}, {x: 0.143026005, y: null}, {x: 0.474967062, y: null}, {x: 0.123188406, y: null}, {x: 0.114958449, y: null}, {x: 0.186068702, y: null}, {x: 0.060692271, y: null}, {x: 0.017900732, y: null}, {x: 0.142712551, y: null}, {x: 0.622906292, y: null}, {x: 0.536585366, y: null}, {x: 0.135753176, y: null}, {x: 0.042706965, y: null}, {x: 0.188905547, y: null}, {x: 0.117304493, y: null}, {x: 0.047355474, y: null}, {x: 0.346038114, y: null}, {x: 0.67498582, y: null}, {x: 0.401002506, y: null}, {x: 0.203161593, y: null}, {x: 0.200686106, y: null}, {x: 0.524515393, y: null}, {x: 0.407225965, y: null}, {x: 0.502504174, y: null}, {x: 0.109704641, y: null}, {x: 0.197188309, y: null}, {x: 0.050936768, y: null}, {x: 0.192681532, y: null}, {x: 0.024029575, y: null}, {x: 0.377916019, y: null}, {x: 0.317327766, y: null}, {x: 0.104707435, y: null}, {x: 0.05929063, y: null}, {x: 0.0, y: null}, {x: 0.195714286, y: null}, {x: 0.159755269, y: null}, {x: 0.094654788, y: null}, {x: 0.126545455, y: null}, {x: 0.166768479, y: null}, {x: 0.269230769, y: null}, {x: 0.16741501, y: null}, {x: 0.087077351, y: null}, {x: 0.192893401, y: null}, {x: 0.099638616, y: null}, {x: 0.006319115, y: null}, {x: 0.091381872, y: null}, {x: 0.121767241, y: null}, {x: 0.201141227, y: null}, {x: 0.047643183, y: null}, {x: 0.234803922, y: null}, {x: 0.10952381, y: null}, {x: 0.24623803, y: null}, {x: 0.195972115, y: null}, {x: 0.178913738, y: null}, {x: 0.08, y: null}, {x: 0.168395062, y: null}, {x: 0.073867163, y: null}, {x: 0.438853131, y: null}, {x: 0.142307692, y: 385.927118}, {x: 0.172337278, y: 2.816}, {x: 0.150650441, y: null}, {x: 0.086673889, y: null}, {x: 0.054512139, y: null}, {x: 0.007142857, y: null}, {x: 0.218031279, y: null}, {x: 0.089412811, y: null}, {x: 0.097799511, y: null}, {x: 0.065399665, y: null}, {x: 0.020733652, y: null}, {x: 0.019163763, y: null}, {x: 0.092819615, y: null}, {x: 0.237449118, y: null}, {x: 0.338966203, y: null}, {x: 0.141304348, y: null}, {x: 0.096727796, y: null}, {x: 0.313445378, y: null}, {x: 0.202038104, y: null}, {x: 0.179930796, y: null}, {x: 0.031832298, y: null}, {x: 0.092133239, y: null}, {x: 0.089820359, y: null}, {x: 0.094003241, y: null}, {x: 0.092709984, y: null}, {x: 0.064261556, y: null}, {x: 0.217230008, y: null}, {x: 0.176865046, y: null}, {x: 0.089154412, y: null}, {x: 0.184771033, y: null}, {x: 0.02188392, y: null}, {x: 0.075613276, y: null}, {x: 0.039819005, y: null}, {x: 0.170632618, y: null}, {x: 0.242459397, y: null}, {x: 0.212140175, y: null}, {x: 0.218994413, y: null}, {x: 0.126482213, y: null}, {x: 0.176139273, y: null}, {x: 0.167036216, y: null}, {x: 0.227786753, y: null}, {x: 0.194784026, y: null}, {x: 0.209767814, y: null}, {x: 0.148795649, y: null}, {x: 0.119930475, y: null}, {x: 0.281481482, y: null}, {x: 0.245859873, y: null}, {x: 0.056631893, y: null}, {x: 0.547680412, y: null}, {x: 0.62985782, y: null}, {x: 0.056737589, y: null}, {x: 0.14129625, y: null}, {x: 0.186666667, y: null}, {x: 0.063291139, y: null}, {x: 0.217636023, y: null}, {x: 0.142926829, y: null}, {x: 0.099309612, y: null}, {x: 0.192756292, y: null}, {x: 0.086353123, y: null}, {x: 0.236290682, y: null}, {x: 0.692188708, y: null}, {x: 0.693947144, y: null}, {x: 0.461373391, y: null}, {x: 0.410230692, y: null}, {x: 0.134615385, y: null}, {x: 0.451674037, y: null}, {x: 0.466422466, y: null}, {x: 0.664900662, y: null}, {x: 0.843210803, y: null}, {x: 0.371597633, y: null}, {x: 0.60106383, y: null}, {x: 0.296181631, y: null}, {x: 0.604166667, y: null}, {x: 0.535080956, y: null}, {x: 0.422025724, y: null}, {x: 0.007656968, y: null}, {x: 0.119390347, y: null}, {x: 0.107080164, y: null}, {x: 0.452788515, y: null}, {x: 0.346938776, y: null}, {x: 0.0, y: null}, {x: 0.114676486, y: null}, {x: 0.124465812, y: null}, {x: 0.162243151, y: null}, {x: 0.203240059, y: null}, {x: 0.149584488, y: null}, {x: 0.194214876, y: null}, {x: 0.165613718, y: null}, {x: 0.224386724, y: null}, {x: 0.308252427, y: null}, {x: 0.131256563, y: null}, {x: 0.226162333, y: null}, {x: 0.0, y: null}, {x: 0.230593607, y: null}, {x: 0.103011094, y: null}, {x: 0.186766275, y: null}, {x: 0.335589942, y: null}, {x: 0.0, y: null}, {x: 0.047265361, y: 0.45}, {x: 0.209090909, y: null}, {x: 0.139902676, y: null}, {x: 0.058823529, y: null}, {x: 0.145431945, y: null}, {x: 0.167484997, y: null}, {x: 0.332688588, y: null}, {x: 0.175675676, y: null}, {x: 0.357366771, y: null}, {x: 0.222222222, y: null}, {x: 0.31292876, y: null}, {x: 0.045454545, y: null}, {x: 0.896153846, y: null}, {x: 0.165371809, y: null}, {x: 0.206546796, y: null}, {x: 0.16856492, y: null}, {x: 0.456357759, y: null}, {x: 0.0, y: null}, {x: 0.344452502, y: null}, {x: 0.105373343, y: null}, {x: 0.32618683, y: null}, {x: 0.317860747, y: null}, {x: 0.239130435, y: null}, {x: 0.190134529, y: null}, {x: 0.334490741, y: null}, {x: 0.187900356, y: null}, {x: 0.214686385, y: 5e-05}, {x: 0.295597484, y: null}, {x: 0.288693743, y: null}, {x: 0.335766423, y: null}, {x: 0.069602273, y: null}, {x: 0.042776999, y: null}, {x: 0.094623656, y: null}, {x: 0.119918699, y: null}, {x: 0.294010889, y: null}, {x: 0.216639209, y: null}, {x: 0.143867925, y: null}, {x: 0.600825878, y: null}, {x: 0.440881764, y: null}, {x: 0.131931166, y: null}, {x: 0.067490494, y: null}, {x: 0.090606262, y: null}, {x: 0.109448819, y: null}, {x: 0.270613108, y: null}, {x: 0.320610687, y: null}, {x: 0.098654709, y: null}, {x: 0.096551724, y: null}, {x: 0.216936251, y: null}, {x: 0.139312977, y: null}, {x: 0.111520737, y: null}, {x: 0.298219585, y: null}, {x: 0.25948718, y: null}, {x: 0.156905278, y: null}, {x: 0.169597277, y: null}, {x: 0.075660243, y: null}, {x: 0.090005233, y: null}, {x: 0.063157895, y: null}, {x: 0.255225523, y: null}, {x: 0.125, y: null}, {x: 0.106425703, y: null}, {x: 0.158339198, y: null}, {x: 0.372469636, y: null}, {x: 0.613154961, y: null}, {x: 0.334821429, y: null}, {x: 0.517326733, y: null}, {x: 0.44867855, y: null}, {x: 0.031698113, y: null}, {x: 0.1796875, y: null}, {x: 0.288334556, y: 2479.88946}, {x: 0.680131004, y: null}, {x: 0.377899045, y: null}, {x: 0.224024328, y: null}, {x: 0.569614069, y: null}, {x: 0.332887701, y: null}, {x: 0.256934307, y: null}, {x: 0.175418994, y: null}, {x: 0.710470086, y: null}, {x: 0.433684211, y: 482.90002}, {x: 0.566246057, y: null}, {x: 0.479349187, y: 67.833}, {x: 0.478670013, y: null}, {x: 0.317446809, y: null}, {x: 0.348593228, y: null}, {x: 0.147346072, y: null}, {x: 0.252354049, y: null}, {x: 0.09593777, y: null}, {x: 0.420918367, y: null}, {x: 0.228438228, y: null}, {x: 0.244226732, y: null}, {x: 0.48549884, y: null}, {x: 0.486111111, y: 55.29}, {x: 0.378483835, y: null}, {x: 0.520729685, y: null}, {x: 0.336483932, y: null}, {x: 0.646521434, y: null}, {x: 0.407643312, y: null}, {x: 0.432835821, y: null}, {x: 0.186453023, y: null}, {x: 0.346908734, y: null}, {x: 0.049135578, y: null}, {x: 0.025723473, y: null}, {x: 0.35114079, y: null}, {x: 0.242244224, y: null}, {x: 0.19873817, y: null}, {x: 0.187434002, y: null}, {x: 0.229894395, y: null}, {x: 0.04886562, y: null}, {x: 0.435246318, y: null}, {x: 0.065433855, y: null}, {x: 0.42882405, y: null}, {x: 0.165986395, y: null}, {x: 0.171401515, y: null}, {x: 0.181990521, y: null}, {x: 0.677419355, y: null}, {x: 0.276346604, y: null}, {x: 0.462096243, y: null}, {x: 0.506582412, y: null}, {x: 0.487410072, y: null}, {x: 0.651711027, y: null}, {x: 0.467996675, y: null}, {x: 0.465584779, y: null}, {x: 0.481886535, y: null}, {x: 0.174825175, y: null}, {x: 0.540901503, y: null}, {x: 0.191395961, y: null}, {x: 0.343832021, y: null}, {x: 0.293144208, y: null}, {x: 0.348008386, y: null}, {x: 0.175074184, y: null}, {x: 0.124301676, y: null}, {x: 0.111923253, y: null}, {x: 0.788161994, y: 199.24}, {x: 0.40459364, y: null}, {x: 0.160842294, y: 654.51638}, {x: 0.091078067, y: null}, {x: 0.335769981, y: null}, {x: 0.265109193, y: null}, {x: 0.0, y: null}, {x: 0.07016129, y: null}, {x: 0.208350223, y: null}, {x: 0.048558897, y: null}, {x: 0.044928523, y: null}, {x: 0.095512083, y: null}, {x: 0.1201373, y: null}, {x: 0.137418756, y: null}, {x: 0.013313609, y: null}, {x: 0.072332731, y: null}, {x: 0.186107965, y: null}, {x: 0.185592619, y: null}, {x: 0.311759344, y: null}, {x: 0.163699024, y: null}, {x: 0.200447094, y: null}, {x: 0.053875756, y: null}, {x: 0.214727723, y: null}, {x: 0.262099777, y: null}, {x: 0.077572965, y: null}, {x: 0.215111478, y: null}, {x: 0.115982242, y: null}, {x: 0.138235294, y: null}, {x: 0.016422548, y: null}, {x: 0.155236908, y: null}, {x: 0.292901716, y: null}, {x: 0.048076923, y: null}, {x: 0.048710602, y: null}, {x: 0.066005472, y: null}, {x: 0.041421947, y: null}, {x: 0.218197499, y: null}, {x: 0.103708791, y: null}, {x: 0.082482993, y: null}, {x: 0.060178655, y: null}, {x: 0.08688172, y: null}, {x: 0.327169275, y: null}, {x: 0.008540925, y: null}, {x: 0.034736842, y: null}, {x: 0.079427083, y: null}, {x: 0.141935484, y: null}, {x: 0.017988553, y: null}, {x: 0.070175439, y: null}, {x: 0.050531915, y: null}, {x: 0.014973958, y: null}, {x: 0.070038911, y: null}, {x: 0.051712559, y: null}, {x: 0.071076707, y: null}, {x: 0.113802817, y: null}, {x: 0.054874489, y: null}, {x: 0.011641444, y: null}, {x: 0.036539896, y: null}, {x: 0.171572146, y: null}, {x: 0.017011834, y: null}, {x: 0.048372093, y: null}, {x: 0.01187447, y: null}, {x: 0.089381207, y: null}, {x: 0.082481254, y: null}, {x: 0.06993865, y: null}, {x: 0.214519294, y: null}, {x: 0.071005917, y: null}, {x: 0.268896321, y: null}, {x: 0.089883112, y: null}, {x: 0.044703596, y: null}, {x: 0.060674157, y: null}, {x: 0.05190678, y: null}, {x: 0.025806452, y: null}, {x: 0.051771117, y: null}, {x: 0.078457447, y: null}, {x: 0.0, y: null}, {x: 0.237670514, y: 396.4304}, {x: 0.135699374, y: null}, {x: 0.039623909, y: null}, {x: 0.564759036, y: null}, {x: 0.176814012, y: null}, {x: 0.0, y: null}, {x: 0.214733542, y: null}, {x: 0.097073519, y: null}, {x: 0.05943331, y: null}, {x: 0.083663086, y: null}, {x: 0.17235637, y: null}, {x: 0.054300817, y: null}, {x: 0.082160945, y: null}, {x: 0.124620061, y: null}, {x: 0.076555024, y: null}, {x: 0.039936102, y: null}, {x: 0.101486749, y: null}, {x: 0.035288012, y: null}, {x: 0.01529052, y: null}, {x: 0.032444959, y: null}, {x: 0.11208893, y: null}, {x: 0.109375, y: null}, {x: 0.147945206, y: null}, {x: 0.037681159, y: null}, {x: 0.124303233, y: null}, {x: 0.256038647, y: null}, {x: 0.0, y: null}, {x: 0.120833333, y: null}, {x: 0.140155729, y: null}, {x: 0.146167558, y: null}, {x: 0.094582975, y: null}, {x: 0.0, y: null}, {x: 0.041934582, y: null}, {x: 0.117152104, y: null}, {x: 0.0, y: null}, {x: 0.043557833, y: null}, {x: 0.0, y: null}, {x: 0.092467851, y: null}, {x: 0.03052422, y: null}, {x: 0.195945946, y: null}, {x: 0.01038961, y: null}, {x: 0.151055409, y: null}, {x: 0.068666667, y: null}, {x: 0.0, y: null}, {x: 0.061793215, y: null}, {x: 0.137690095, y: null}, {x: 0.031413613, y: null}, {x: 0.096164854, y: null}, {x: 0.062413315, y: null}, {x: 0.0, y: null}, {x: 0.083769634, y: null}, {x: 0.305785124, y: null}, {x: 0.36154289, y: null}, {x: 0.017492711, y: null}, {x: 0.023110556, y: null}, {x: 0.299554114, y: null}, {x: 0.225231911, y: null}, {x: 0.566835871, y: null}, {x: 0.113970588, y: null}, {x: 0.449060336, y: null}, {x: 0.443462075, y: null}, {x: 0.36322532, y: null}, {x: 0.150716332, y: null}, {x: 0.033933162, y: null}, {x: 0.174543753, y: null}, {x: 0.163619744, y: null}, {x: 0.315756824, y: null}, {x: 0.103532278, y: null}, {x: 0.236973948, y: null}, {x: 0.146926537, y: null}, {x: 0.093931837, y: null}, {x: 0.112177565, y: null}, {x: 0.058638743, y: null}, {x: 0.122053872, y: null}, {x: 0.136310223, y: null}, {x: 0.034285714, y: null}, {x: 0.073654391, y: null}, {x: 0.066193853, y: null}, {x: 0.128362798, y: null}, {x: 0.177130045, y: null}, {x: 0.085947572, y: null}, {x: 0.34814364, y: null}, {x: 0.155061019, y: null}, {x: 0.285795455, y: null}, {x: 0.250814332, y: null}, {x: 0.085766423, y: null}, {x: 0.105163728, y: null}, {x: 0.035366932, y: null}, {x: 0.084161696, y: null}, {x: 0.015397776, y: null}, {x: 0.286223278, y: null}, {x: 0.0, y: null}, {x: 0.032552827, y: null}, {x: 0.039562924, y: null}, {x: 0.150084317, y: null}, {x: 0.188761593, y: null}, {x: 0.0, y: null}, {x: 0.103028194, y: null}, {x: 0.320325203, y: null}, {x: 0.069166667, y: null}, {x: 0.042932629, y: null}, {x: 0.042553191, y: null}, {x: 0.096153846, y: null}, {x: 0.184210526, y: null}, {x: 0.124748491, y: null}, {x: 0.168241966, y: null}, {x: 0.037848606, y: null}, {x: 0.011158798, y: null}, {x: 0.074758135, y: null}, {x: 0.109271523, y: null}, {x: 0.021060276, y: null}, {x: 0.280726257, y: null}, {x: 0.098263027, y: null}, {x: 0.044251627, y: null}, {x: 0.065446478, y: null}, {x: 0.158808933, y: null}, {x: 0.159280668, y: null}, {x: 0.189856066, y: null}, {x: 0.098351336, y: null}, {x: 0.347411444, y: null}, {x: 0.136861314, y: null}, {x: 0.04068078, y: null}, {x: 0.072327044, y: null}, {x: 0.084288604, y: null}, {x: 0.042704626, y: null}, {x: 0.024280911, y: null}, {x: 0.035844916, y: null}, {x: 0.193867458, y: null}, {x: 0.017760058, y: null}, {x: 0.068499759, y: null}, {x: 0.205967276, y: null}, {x: 0.141923436, y: null}, {x: 0.016100179, y: null}, {x: 0.088701685, y: null}, {x: 0.01684002, y: null}, {x: 0.038173142, y: null}, {x: 0.035057717, y: null}, {x: 0.063985375, y: null}, {x: 0.071885585, y: null}, {x: 0.028510335, y: null}, {x: 0.055236729, y: null}, {x: 0.265200518, y: null}, {x: 0.13353566, y: null}, {x: 0.046861565, y: null}, {x: 0.0, y: null}, {x: 0.023393984, y: null}, {x: 0.049939099, y: null}, {x: 0.106945298, y: null}, {x: 0.083561644, y: null}, {x: 0.112337406, y: null}, {x: 0.139705882, y: null}, {x: 0.252894859, y: null}, {x: 0.164410058, y: null}, {x: 0.012004175, y: null}, {x: 0.171943712, y: null}, {x: 0.132789318, y: null}, {x: 0.143104443, y: null}, {x: 0.0, y: null}, {x: 0.157161515, y: null}, {x: 0.094700261, y: null}, {x: 0.241590214, y: null}, {x: 0.286516854, y: null}, {x: 0.169590643, y: null}, {x: 0.004437273, y: null}, {x: 0.1014772, y: null}, {x: 0.188346884, y: null}, {x: 0.061985472, y: null}, {x: 0.059380379, y: null}, {x: 0.34973262, y: null}, {x: 0.13239645, y: null}, {x: 0.144636015, y: null}, {x: 0.249277457, y: null}, {x: 0.165124555, y: null}, {x: 0.159560724, y: null}, {x: 0.039032006, y: null}, {x: 0.072839506, y: null}, {x: 0.217518248, y: null}, {x: 0.030758226, y: null}, {x: 0.073813708, y: null}, {x: 0.120250686, y: null}, {x: 0.272456576, y: null}, {x: 0.211159211, y: null}, {x: 0.133167907, y: null}, {x: 0.218879056, y: null}, {x: 0.296296296, y: null}, {x: 0.059376837, y: null}, {x: 0.047474133, y: null}, {x: 0.176684882, y: null}, {x: 0.124452235, y: null}, {x: 0.069010417, y: null}, {x: 0.036553525, y: null}, {x: 0.086799277, y: null}, {x: 0.111235955, y: null}, {x: 0.105882353, y: null}, {x: 0.037931034, y: null}, {x: 0.266666667, y: null}, {x: 0.0978957, y: null}, {x: 0.019764706, y: null}, {x: 0.04842615, y: null}, {x: 0.100762527, y: null}, {x: 0.060553633, y: null}, {x: 0.0, y: null}, {x: 0.077837838, y: null}, {x: 0.169364882, y: null}, {x: 0.072586588, y: null}, {x: 0.067017083, y: null}, {x: 0.11722488, y: null}, {x: 0.022646851, y: null}, {x: 0.02853067, y: null}, {x: 0.058122206, y: null}, {x: 0.3089701, y: null}, {x: 0.024883359, y: null}, {x: 0.10755814, y: null}, {x: 0.101822079, y: null}, {x: 0.314445331, y: null}, {x: 0.084803256, y: null}, {x: 0.195767196, y: null}, {x: 0.12605042, y: null}, {x: 0.097028502, y: null}, {x: 0.099518459, y: null}, {x: 0.169680111, y: null}, {x: 0.179425837, y: null}, {x: 0.065920398, y: null}, {x: 0.06924254, y: null}, {x: 0.05941704, y: null}, {x: 0.073232323, y: null}, {x: 0.078976035, y: null}, {x: 0.199346405, y: null}, {x: 0.169164882, y: null}, {x: 0.088582677, y: null}, {x: 0.072837633, y: null}, {x: 0.110384895, y: null}, {x: 0.154066986, y: null}, {x: 0.215460526, y: null}, {x: 0.013986014, y: null}, {x: 0.012393493, y: null}, {x: 0.135429262, y: null}, {x: 0.039334342, y: null}, {x: 0.098265896, y: null}, {x: 0.04856787, y: null}, {x: 0.0, y: null}, {x: 0.050579557, y: null}, {x: 0.20630861, y: null}, {x: 0.150159744, y: null}, {x: 0.0, y: null}, {x: 0.035573123, y: null}, {x: 0.084383562, y: null}, {x: 0.213011543, y: null}, {x: 0.196338384, y: null}, {x: 0.052927928, y: null}, {x: 0.235344828, y: null}, {x: 0.180887372, y: null}, {x: 0.028873239, y: null}, {x: 0.029678483, y: null}, {x: 0.188034188, y: null}, {x: 0.043365696, y: null}, {x: 0.125471972, y: null}, {x: 0.255681818, y: null}, {x: 0.205063291, y: null}, {x: 0.04587156, y: null}, {x: 0.21971831, y: null}, {x: 0.012488849, y: null}, {x: 0.152046784, y: null}, {x: 0.039962388, y: null}, {x: 0.248784441, y: null}, {x: 0.067865904, y: null}, {x: 0.086419753, y: null}, {x: 0.098591549, y: null}, {x: 0.11284869, y: null}, {x: 0.177944862, y: null}, {x: 0.014126394, y: null}, {x: 0.051237766, y: null}, {x: 0.066489362, y: null}, {x: 0.289877301, y: null}, {x: 0.027602524, y: null}, {x: 0.0, y: null}, {x: 0.165260197, y: null}, {x: 0.156378601, y: null}, {x: 0.056112224, y: null}, {x: 0.071163825, y: null}, {x: 0.0, y: null}, {x: 0.044663573, y: null}, {x: 0.012202954, y: null}, {x: 0.050034746, y: null}, {x: 0.010972933, y: null}, {x: 0.282968854, y: null}, {x: 0.214654283, y: null}, {x: 0.009409752, y: null}, {x: 0.422590068, y: null}, {x: 0.200450451, y: null}, {x: 0.062365591, y: null}, {x: 0.032436709, y: null}, {x: 0.037037037, y: null}, {x: 0.118990385, y: null}, {x: 0.092137592, y: null}, {x: 0.057080132, y: null}, {x: 0.050874404, y: null}, {x: 0.046431642, y: null}, {x: 0.410755149, y: null}, {x: 0.073604061, y: null}, {x: 0.257575758, y: null}, {x: 0.135167464, y: null}, {x: 0.26074896, y: null}, {x: 0.130530974, y: null}, {x: 0.549778761, y: null}, {x: 0.100609756, y: null}, {x: 0.345813479, y: null}, {x: 0.109311741, y: null}, {x: 0.07133758, y: null}, {x: 0.426791277, y: null}, {x: 0.31678487, y: null}, {x: 0.20610687, y: null}, {x: 0.233018868, y: null}, {x: 0.085732984, y: null}, {x: 0.125, y: null}, {x: 0.285276074, y: null}, {x: 0.340678976, y: null}, {x: 0.361038961, y: null}, {x: 0.355791962, y: null}, {x: 0.0, y: null}, {x: 0.058962264, y: 68.97}, {x: 0.079710145, y: null}, {x: 0.279891304, y: null}, {x: 0.154255319, y: null}, {x: 0.259044863, y: null}, {x: 0.0, y: null}, {x: 0.023121387, y: null}, {x: 0.047530289, y: null}, {x: 0.148854962, y: null}, {x: 0.376888218, y: null}, {x: 0.310756972, y: null}, {x: 0.235543018, y: null}, {x: 0.103947368, y: null}, {x: 0.366492147, y: null}, {x: 0.131386861, y: null}, {x: 0.016248154, y: null}, {x: 0.03442029, y: null}, {x: 0.022192334, y: null}, {x: 0.249895529, y: null}, {x: 0.10626186, y: null}, {x: 0.057943925, y: null}, {x: 0.232352941, y: null}, {x: 0.222172553, y: null}, {x: 0.390946502, y: null}, {x: 0.030192132, y: null}, {x: 0.430502975, y: null}, {x: 0.288270378, y: null}, {x: 0.096774194, y: null}, {x: 0.395579268, y: null}, {x: 0.476152623, y: null}, {x: 0.051526718, y: null}, {x: 0.152051488, y: null}, {x: 0.09478022, y: null}, {x: 0.499222395, y: null}, {x: 0.355847688, y: null}, {x: 0.517611026, y: null}, {x: 0.492407809, y: null}, {x: 0.229799852, y: null}, {x: 0.233050848, y: null}, {x: 0.581833061, y: null}, {x: 0.353284672, y: null}, {x: 0.310491493, y: null}, {x: 0.422346369, y: null}, {x: 0.457024793, y: null}, {x: 0.298837209, y: null}, {x: 0.096813725, y: null}, {x: 0.198748044, y: null}, {x: 0.351602024, y: null}, {x: 0.457702582, y: null}, {x: 0.417251755, y: null}, {x: 0.140414041, y: null}, {x: 0.224631396, y: null}, {x: 0.275332651, y: null}, {x: 0.422459893, y: null}, {x: 0.279020979, y: null}, {x: 0.0, y: null}, {x: 0.291012839, y: null}, {x: 0.650949574, y: null}, {x: 0.272113943, y: null}, {x: 0.104105572, y: null}, {x: 0.303286385, y: null}, {x: 0.299932751, y: null}, {x: 0.441834452, y: null}, {x: 0.389489954, y: null}, {x: 0.70591614, y: null}, {x: 0.528669725, y: null}, {x: 0.2, y: null}, {x: 0.214854111, y: null}, {x: 0.292115712, y: null}, {x: 0.215087719, y: null}, {x: 0.136595311, y: null}, {x: 0.414210129, y: null}, {x: 0.532400589, y: null}, {x: 0.258293839, y: null}, {x: 0.448903157, y: null}, {x: 0.09164149, y: null}, {x: 0.589052997, y: null}, {x: 0.284609979, y: null}, {x: 0.14197052, y: null}, {x: 0.307692308, y: null}, {x: 0.464686998, y: null}, {x: 0.229411765, y: null}, {x: 0.239242685, y: null}, {x: 0.513846154, y: null}, {x: 0.284114053, y: null}, {x: 0.24434942, y: null}, {x: 0.3388735, y: null}, {x: 0.180787192, y: null}, {x: 0.41037037, y: null}, {x: 0.555045872, y: null}, {x: 0.385957447, y: null}, {x: 0.251644737, y: null}, {x: 0.343949045, y: null}, {x: 0.319240196, y: null}, {x: 0.102721088, y: null}, {x: 0.682885906, y: null}, {x: 0.144089733, y: null}, {x: 0.386214442, y: null}, {x: 0.543369475, y: null}, {x: 0.881203008, y: null}, {x: 0.0, y: null}, {x: 0.295935648, y: null}, {x: 0.373917473, y: null}, {x: 0.138236828, y: null}, {x: 0.502119927, y: null}, {x: 0.12755102, y: null}, {x: 0.30420712, y: null}, {x: 0.133250311, y: null}, {x: 0.203099511, y: null}, {x: 0.086341118, y: null}, {x: 0.090977444, y: null}, {x: 0.538135593, y: null}, {x: 0.095179988, y: null}, {x: 0.219117051, y: null}, {x: 0.225886233, y: null}, {x: 0.08997955, y: null}, {x: 0.029850746, y: null}, {x: 0.098765432, y: null}, {x: 0.117998913, y: null}, {x: 0.095194923, y: null}, {x: 0.205791107, y: null}, {x: 0.127790608, y: null}, {x: 0.040909091, y: null}, {x: 0.202422145, y: null}, {x: 0.038376384, y: null}, {x: 0.194357367, y: null}, {x: 0.360132159, y: null}, {x: 0.150326797, y: null}, {x: 0.162921348, y: null}, {x: 0.136363636, y: null}, {x: 0.0, y: null}, {x: 0.261682243, y: null}, {x: 0.484992101, y: null}, {x: 0.105263158, y: null}, {x: 0.045929019, y: null}, {x: 0.256126482, y: null}, {x: 0.088764045, y: null}, {x: 0.272727273, y: null}, {x: 0.565180824, y: null}, {x: 0.758920801, y: null}, {x: 0.171249018, y: null}, {x: 0.047029703, y: null}, {x: 0.12364946, y: null}, {x: 0.200736648, y: null}, {x: 0.0514198, y: null}, {x: 0.18784972, y: null}, {x: 0.089861751, y: null}, {x: 0.076363636, y: null}, {x: 0.068148148, y: null}, {x: 0.181021898, y: null}, {x: 0.209677419, y: null}, {x: 0.172205438, y: null}, {x: 0.218660969, y: null}, {x: 0.165700083, y: null}, {x: 0.126609442, y: null}, {x: 0.066852368, y: null}, {x: 0.173633441, y: null}, {x: 0.185148515, y: null}, {x: 0.170008718, y: null}, {x: 0.121142857, y: null}, {x: 0.281847134, y: null}, {x: 0.113562622, y: null}, {x: 0.155193993, y: null}, {x: 0.18997107, y: null}, {x: 0.473941368, y: null}, {x: 0.097812098, y: null}, {x: 0.201520913, y: null}, {x: 0.097959184, y: null}, {x: 0.355411955, y: null}, {x: 0.37145749, y: null}, {x: 0.329359165, y: null}, {x: 0.165422886, y: null}, {x: 0.548944338, y: null}, {x: 0.262813522, y: null}, {x: 0.227533461, y: null}, {x: 0.208955224, y: null}, {x: 0.119318182, y: null}, {x: 0.291841884, y: null}, {x: 0.754601227, y: null}, {x: 0.127245509, y: null}, {x: 0.280445969, y: null}, {x: 0.158119658, y: null}, {x: 0.111111111, y: 2.8}, {x: 0.159513133, y: null}, {x: 0.359756098, y: null}, {x: 0.215625, y: null}, {x: 0.12875121, y: null}, {x: 0.082208589, y: null}, {x: 0.425660793, y: null}, {x: 0.233282675, y: null}, {x: 0.087452471, y: null}, {x: 0.067776457, y: null}, {x: 0.311388755, y: null}, {x: 0.434116445, y: null}, {x: 0.432872254, y: null}, {x: 0.11827957, y: null}, {x: 0.180433039, y: null}, {x: 0.069421488, y: null}, {x: 0.175474814, y: null}, {x: 0.351669941, y: null}, {x: 0.450753187, y: null}, {x: 0.241203704, y: null}, {x: 0.259615385, y: null}, {x: 0.0, y: null}, {x: 1.0, y: null}, {x: 0.184190902, y: null}, {x: 0.37899918, y: null}, {x: 0.041082164, y: null}, {x: 0.131004367, y: null}, {x: 0.131100479, y: null}, {x: 0.182320442, y: null}, {x: 0.08910162, y: null}, {x: 0.175876727, y: null}, {x: 0.355685131, y: null}, {x: 0.083606557, y: null}, {x: 0.065263158, y: null}, {x: 0.183634634, y: null}, {x: 0.0, y: null}, {x: 0.269141531, y: null}, {x: 0.249578415, y: null}, {x: 0.19035744, y: null}, {x: 0.240200167, y: null}, {x: 0.071535022, y: null}, {x: 0.0945758, y: null}, {x: 0.399122807, y: null}, {x: 0.385391924, y: null}, {x: 0.666666667, y: null}, {x: 0.072519084, y: null}, {x: 0.346875, y: null}, {x: 0.419450631, y: null}, {x: 0.116094987, y: null}, {x: 0.035558781, y: 1.38}, {x: 0.004302926, y: null}, {x: 0.041910331, y: 3.71}, {x: 0.087529976, y: null}, {x: 0.207612457, y: null}, {x: 0.0653789, y: null}, {x: 0.103906899, y: null}, {x: 0.119777159, y: null}, {x: 0.03666997, y: null}, {x: 0.186423506, y: null}, {x: 0.024564184, y: null}, {x: 0.0, y: null}, {x: 0.099805574, y: null}, {x: 0.153669725, y: null}, {x: 0.038123167, y: null}, {x: 0.193960511, y: null}, {x: 0.083261058, y: null}, {x: 0.102013423, y: null}, {x: 0.180658874, y: null}, {x: 0.093772894, y: null}, {x: 0.0, y: null}, {x: 0.153473344, y: null}, {x: 0.152453271, y: null}, {x: 0.1544, y: null}, {x: 0.184054283, y: null}, {x: 0.682846371, y: null}, {x: 0.304635762, y: null}, {x: 0.210261569, y: null}, {x: 0.128410915, y: 1.975}, {x: 0.137285491, y: null}, {x: 0.070357555, y: null}, {x: 0.120289107, y: null}, {x: 0.01174743, y: 45.306}, {x: 0.134897361, y: null}, {x: 0.146017699, y: null}, {x: 0.026455026, y: null}, {x: 0.028528529, y: null}, {x: 0.087824351, y: null}, {x: 0.12605042, y: null}, {x: 0.059541985, y: null}, {x: 0.209051724, y: null}, {x: 0.011152416, y: null}, {x: 0.070773263, y: null}, {x: 0.03030303, y: null}, {x: 0.053941909, y: null}, {x: 0.021212121, y: null}, {x: 0.061271676, y: null}, {x: 0.0, y: null}, {x: 0.045107564, y: null}, {x: 0.307652799, y: null}, {x: 0.012578616, y: null}, {x: 0.081132075, y: null}, {x: 0.156886228, y: null}, {x: 0.07037037, y: null}, {x: 0.103202847, y: null}, {x: 0.00619195, y: null}, {x: 0.141618497, y: null}, {x: 0.167250438, y: null}, {x: 0.11352657, y: null}, {x: 0.257471264, y: null}, {x: 0.034907598, y: null}, {x: 0.005420054, y: null}, {x: 0.20573108, y: 12.033039}, {x: 0.09609375, y: null}, {x: 0.114934114, y: null}, {x: 0.472627737, y: null}, {x: 0.192743764, y: null}, {x: 0.032321254, y: null}, {x: 0.223445239, y: null}, {x: 0.0, y: null}, {x: 0.017316017, y: null}, {x: 0.050623053, y: null}, {x: 0.011483254, y: null}, {x: 0.019630485, y: null}, {x: 0.207908163, y: null}, {x: 0.036238981, y: null}, {x: 0.104538501, y: null}, {x: 0.051960784, y: null}, {x: 0.012074643, y: null}, {x: 0.044698545, y: null}, {x: 0.040328093, y: null}, {x: 0.0, y: null}, {x: 0.237944664, y: null}, {x: 0.107142857, y: null}, {x: 0.087142857, y: null}, {x: 0.072354212, y: null}, {x: 0.072902338, y: null}, {x: 0.045618247, y: null}, {x: 0.153061225, y: null}, {x: 0.128964059, y: null}, {x: 0.07087959, y: null}, {x: 0.070737606, y: null}, {x: 0.158986175, y: null}, {x: 0.17877095, y: null}, {x: 0.155731225, y: null}, {x: 0.138794084, y: null}, {x: 0.05618964, y: null}, {x: 0.198645598, y: null}, {x: 0.034943474, y: null}, {x: 0.191176471, y: null}, {x: 0.048370137, y: null}, {x: 0.033561644, y: null}, {x: 0.012101911, y: null}, {x: 0.123809524, y: null}, {x: 0.147751606, y: null}, {x: 0.007115948, y: null}, {x: 0.053266332, y: null}, {x: 0.279792746, y: null}, {x: 0.205009276, y: null}, {x: 0.087719298, y: null}, {x: 0.090163934, y: null}, {x: 0.036697248, y: null}, {x: 0.022516083, y: null}, {x: 0.089385475, y: null}, {x: 0.018402342, y: null}, {x: 0.144827586, y: null}, {x: 0.062626263, y: null}, {x: 0.023116438, y: null}, {x: 0.13452381, y: null}, {x: 0.020833333, y: null}, {x: 0.01981982, y: null}, {x: 0.026666667, y: null}, {x: 0.014492754, y: null}, {x: 0.034183397, y: null}, {x: 0.102868447, y: null}, {x: 0.033722438, y: null}, {x: 0.084241104, y: null}, {x: 0.0, y: null}, {x: 0.202939514, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075630252, y: null}, {x: 0.067515924, y: null}, {x: 0.038393175, y: null}, {x: 0.08200213, y: null}, {x: 0.06202209, y: null}, {x: 0.0, y: null}, {x: 0.20886501, y: null}, {x: 0.218677494, y: null}, {x: 0.218516675, y: null}, {x: 0.33029382, y: null}, {x: 0.168469861, y: null}, {x: 0.096880131, y: null}, {x: 0.002998501, y: null}, {x: 0.03898917, y: null}, {x: 0.219183845, y: null}, {x: 0.231752797, y: null}, {x: 0.038461538, y: null}, {x: 0.024309392, y: null}, {x: 0.082075472, y: null}, {x: 0.036119711, y: null}, {x: 0.001144165, y: null}, {x: 0.114229444, y: null}, {x: 0.04735062, y: null}, {x: 0.0, y: null}, {x: 0.259927798, y: null}, {x: 0.029292107, y: null}, {x: 0.033242877, y: null}, {x: 0.057170543, y: null}, {x: 0.067164179, y: null}, {x: 0.047220107, y: null}, {x: 0.238165681, y: null}, {x: 0.050544323, y: null}, {x: 0.062787136, y: null}, {x: 0.101962662, y: null}, {x: 0.0, y: null}, {x: 0.102057959, y: null}, {x: 0.050765512, y: null}, {x: 0.032311978, y: 0.0117}, {x: 0.101750547, y: null}, {x: 0.405918728, y: null}, {x: 0.086978637, y: null}, {x: 0.130858186, y: null}, {x: 0.239146992, y: null}, {x: 0.151730257, y: null}, {x: 0.0, y: null}, {x: 0.166890983, y: null}, {x: 0.102122016, y: null}, {x: 0.0, y: null}, {x: 0.031300594, y: null}, {x: 0.125842697, y: null}, {x: 0.262761506, y: null}, {x: 0.070028011, y: null}, {x: 0.146699267, y: null}, {x: 0.060298103, y: null}, {x: 0.077654517, y: null}, {x: 0.04567079, y: null}, {x: 0.024219591, y: null}, {x: 0.054298643, y: null}, {x: 0.01669627, y: null}, {x: 0.080801105, y: null}, {x: 0.020438499, y: null}, {x: 0.033070866, y: null}, {x: 0.016289593, y: null}, {x: 0.0, y: null}, {x: 0.070053257, y: null}, {x: 0.016736402, y: null}, {x: 0.07063197, y: null}, {x: 0.011594203, y: null}, {x: 0.008591065, y: null}, {x: 0.091247672, y: null}, {x: 0.197934596, y: null}, {x: 0.109926169, y: null}, {x: 0.037513025, y: null}, {x: 0.08190709, y: null}, {x: 0.047421731, y: null}, {x: 0.010978957, y: null}, {x: 0.042944785, y: null}, {x: 0.077790304, y: null}, {x: 0.163052209, y: null}, {x: 0.149558124, y: null}, {x: 0.259504132, y: null}, {x: 0.058685446, y: null}, {x: 0.115890084, y: null}, {x: 0.200308166, y: null}, {x: 0.050587634, y: null}, {x: 0.0, y: null}, {x: 0.185185185, y: null}, {x: 0.07424072, y: null}, {x: 0.071071627, y: null}, {x: 0.170469799, y: null}, {x: 0.353585657, y: null}, {x: 0.136046938, y: null}, {x: 0.144318182, y: null}, {x: 0.223736969, y: null}, {x: 0.080962801, y: null}, {x: 0.045840407, y: null}, {x: 0.281629116, y: null}, {x: 0.300666032, y: null}, {x: 0.3, y: null}, {x: 0.392881128, y: null}, {x: 0.358374384, y: null}, {x: 0.471659919, y: null}, {x: 0.07267645, y: null}, {x: 0.020357804, y: null}, {x: 0.25528914, y: null}, {x: 0.0, y: null}, {x: 0.154545455, y: null}, {x: 0.28022493, y: null}, {x: 0.190993789, y: null}, {x: 0.328571429, y: null}, {x: 0.032707029, y: null}, {x: 0.017647059, y: null}, {x: 0.336538462, y: null}, {x: 0.202264151, y: null}, {x: 0.058786346, y: null}, {x: 0.290436006, y: null}, {x: 0.32120743, y: null}, {x: 0.4527897, y: null}, {x: 0.154236061, y: null}, {x: 0.044985251, y: null}, {x: 0.164921466, y: null}, {x: 0.145723337, y: null}, {x: 0.212713936, y: null}, {x: 0.020028612, y: null}, {x: 0.02292769, y: null}, {x: 0.290849673, y: null}, {x: 0.230008244, y: null}, {x: 0.249724973, y: null}, {x: 0.352762071, y: null}, {x: 0.295748614, y: null}, {x: 0.244698206, y: null}, {x: 0.72, y: null}, {x: 0.167177914, y: null}, {x: 0.014972777, y: null}, {x: 0.037401575, y: null}, {x: 0.247142857, y: null}, {x: 0.099932019, y: null}, {x: 0.049056604, y: null}, {x: 0.062819203, y: null}, {x: 0.2652124, y: null}, {x: 0.197160883, y: null}, {x: 0.26609658, y: null}, {x: 0.173333333, y: null}, {x: 0.094155844, y: null}, {x: 0.103706625, y: null}, {x: 0.045324154, y: null}, {x: 0.065217391, y: null}, {x: 0.109531773, y: null}, {x: 0.019496855, y: null}, {x: 0.174386921, y: null}, {x: 0.054773083, y: null}, {x: 0.020127119, y: null}, {x: 0.15779982, y: null}, {x: 0.359060403, y: null}, {x: 0.094174757, y: null}, {x: 0.124896609, y: null}, {x: 0.085714286, y: null}, {x: 0.180790961, y: null}, {x: 0.333333333, y: null}, {x: 0.184490306, y: null}, {x: 0.315476191, y: null}, {x: 0.104961832, y: null}, {x: 0.320375335, y: null}, {x: 0.247572816, y: null}, {x: 0.270476191, y: null}, {x: 0.120788303, y: null}, {x: 0.037209302, y: null}, {x: 0.042444822, y: null}, {x: 0.166467066, y: null}, {x: 0.06373117, y: null}, {x: 0.057992565, y: null}, {x: 0.186788155, y: null}, {x: 0.046470063, y: null}, {x: 0.084057971, y: null}, {x: 0.155451226, y: null}, {x: 0.121212121, y: null}, {x: 0.198133525, y: null}, {x: 0.015740741, y: null}, {x: 0.091420534, y: null}, {x: 0.168968318, y: null}, {x: 0.042328042, y: null}, {x: 0.068696331, y: null}, {x: 0.087413856, y: null}, {x: 0.087354409, y: null}, {x: 1.0, y: null}, {x: 0.146989374, y: null}, {x: 0.078674948, y: null}, {x: 0.033033033, y: null}, {x: 0.061157025, y: null}, {x: 0.02425107, y: null}, {x: 0.062926062, y: null}, {x: 0.067114094, y: null}, {x: 0.033764368, y: null}, {x: 0.028612303, y: null}, {x: 0.0, y: null}, {x: 0.195233731, y: null}, {x: 0.330120482, y: null}, {x: 0.037895928, y: null}, {x: 0.066797642, y: null}, {x: 0.21442623, y: null}, {x: 0.111188325, y: null}, {x: 0.070546737, y: null}, {x: 0.109013686, y: null}, {x: 0.073518915, y: null}, {x: 0.12630118, y: null}, {x: 0.010622155, y: null}, {x: 0.093869732, y: null}, {x: 0.013788099, y: null}, {x: 0.046468401, y: null}, {x: 0.020298507, y: null}, {x: 0.031213873, y: null}, {x: 0.041260315, y: null}, {x: 0.0, y: null}, {x: 0.100424328, y: null}, {x: 0.190302398, y: null}, {x: 0.0, y: null}, {x: 0.063829787, y: null}, {x: 0.156100886, y: null}, {x: 0.074766355, y: null}, {x: 0.237333333, y: null}, {x: 0.018018018, y: null}, {x: 0.010905642, y: null}, {x: 0.033281734, y: null}, {x: 0.098579041, y: null}, {x: 0.050299401, y: null}, {x: 0.112725451, y: null}, {x: 0.131414268, y: null}, {x: 0.208482371, y: null}, {x: 0.151515152, y: null}, {x: 0.083388484, y: null}, {x: 0.178507993, y: null}, {x: 0.016260163, y: null}, {x: 0.084337349, y: null}, {x: 0.009546539, y: null}, {x: 0.03626943, y: null}, {x: 0.080407701, y: null}, {x: 0.094430993, y: null}, {x: 0.056603774, y: null}, {x: 0.097067745, y: null}, {x: 0.056534508, y: null}, {x: 0.068230277, y: null}, {x: 0.037328909, y: null}, {x: 0.0, y: null}, {x: 0.106305367, y: null}, {x: 0.216711957, y: null}, {x: 0.018880647, y: null}, {x: 0.09974587, y: null}, {x: 0.246803069, y: null}, {x: 0.157845868, y: null}, {x: 0.164616286, y: null}, {x: 0.03862069, y: null}, {x: 0.161439114, y: null}, {x: 0.383116883, y: null}, {x: 0.0, y: null}, {x: 0.138536585, y: null}, {x: 0.088310038, y: null}, {x: 0.075428571, y: null}, {x: 0.312082574, y: null}, {x: 0.129401409, y: null}, {x: 0.060156931, y: null}, {x: 0.431334623, y: null}, {x: 0.379493223, y: null}, {x: 0.532424812, y: null}, {x: 0.613664987, y: null}, {x: 0.546052632, y: null}, {x: 0.226487524, y: null}, {x: 0.223476298, y: null}, {x: 0.076806084, y: null}, {x: 0.269230769, y: null}, {x: 0.088218554, y: null}, {x: 0.419339842, y: null}, {x: 0.090909091, y: null}, {x: 0.258830342, y: null}, {x: 0.370352251, y: null}, {x: 0.377083333, y: null}, {x: 0.588050315, y: null}, {x: 0.081730769, y: null}, {x: 0.185540627, y: null}, {x: 0.042626728, y: null}, {x: 0.232736573, y: null}, {x: 0.044630404, y: null}, {x: 0.460416667, y: null}, {x: 0.162745098, y: null}, {x: 0.080198723, y: null}, {x: 0.221582734, y: null}, {x: 0.026490066, y: null}, {x: 0.121537396, y: null}, {x: 0.105326877, y: null}, {x: 0.004132231, y: null}, {x: 0.172236504, y: null}, {x: 0.106007067, y: null}, {x: 0.092366902, y: null}, {x: 0.04985889, y: null}, {x: 0.041278834, y: null}, {x: 0.1253406, y: null}, {x: 0.060784314, y: null}, {x: 0.08428246, y: null}, {x: 0.0, y: null}, {x: 0.02293578, y: null}, {x: 0.0, y: null}, {x: 0.059672762, y: null}, {x: 0.171998146, y: null}, {x: 0.0, y: null}, {x: 0.093600764, y: null}, {x: 0.223797781, y: null}, {x: 0.057677903, y: null}, {x: 0.109499637, y: null}, {x: 0.085811966, y: null}, {x: 0.2, y: null}, {x: 0.34620887, y: null}, {x: 0.053123672, y: null}, {x: 0.080193957, y: null}, {x: 0.113268608, y: null}, {x: 0.05888651, y: null}, {x: 0.14829932, y: null}, {x: 0.102339181, y: null}, {x: 0.045673077, y: null}, {x: 0.037362637, y: null}, {x: 0.027713626, y: null}, {x: 0.132121212, y: null}, {x: 0.076180258, y: null}, {x: 0.067599068, y: null}, {x: 0.306865178, y: null}, {x: 0.040816327, y: null}, {x: 0.245704467, y: null}, {x: 0.007203667, y: null}, {x: 0.073689673, y: null}, {x: 0.100893997, y: null}, {x: 0.0, y: null}, {x: 0.042674253, y: null}, {x: 0.050750221, y: null}, {x: 0.098617176, y: null}, {x: 0.049409237, y: null}, {x: 0.213704994, y: null}, {x: 0.214181287, y: null}, {x: 0.183775664, y: 0.0002}, {x: 0.206951027, y: null}, {x: 0.152905199, y: null}, {x: 0.883963494, y: null}, {x: 0.587874659, y: null}, {x: 0.711637487, y: null}, {x: 0.0, y: null}, {x: 0.226415094, y: null}, {x: 0.09394572, y: null}, {x: 0.11577522, y: null}, {x: 0.090062112, y: null}, {x: 0.287859008, y: null}, {x: 0.04732254, y: null}, {x: 0.132924335, y: null}, {x: 0.35235378, y: null}, {x: 0.094637224, y: null}, {x: 0.130541872, y: null}, {x: 0.093366093, y: null}, {x: 0.0, y: null}, {x: 0.492160279, y: null}, {x: 0.112966601, y: null}, {x: 0.059564719, y: null}, {x: 0.443037975, y: null}, {x: 0.211176471, y: null}, {x: 0.152876038, y: null}, {x: 0.749723145, y: null}, {x: 0.425517241, y: null}, {x: 0.124, y: null}, {x: 0.142663962, y: null}, {x: 0.082969432, y: null}, {x: 0.150102459, y: null}, {x: 0.189581554, y: null}, {x: 0.118159204, y: null}, {x: 0.0, y: null}, {x: 0.177738928, y: null}, {x: 0.190880989, y: null}, {x: 0.0, y: null}, {x: 0.182167563, y: null}, {x: 0.129716981, y: null}, {x: 0.0, y: null}, {x: 0.080326753, y: null}, {x: 0.014802632, y: null}, {x: 0.13627451, y: null}, {x: 0.138633377, y: null}, {x: 0.101973684, y: null}, {x: 0.201810437, y: null}, {x: 0.236469609, y: null}, {x: 0.094017094, y: null}, {x: 0.298780488, y: null}, {x: 0.219209915, y: null}, {x: 0.668181818, y: null}, {x: 0.196313364, y: null}, {x: 0.093933464, y: null}, {x: 0.033690659, y: null}, {x: 0.280363831, y: null}, {x: 0.08668942, y: null}, {x: 0.063330727, y: null}, {x: 0.086060606, y: null}, {x: 0.25046729, y: null}, {x: 0.048419637, y: null}, {x: 0.046923879, y: null}, {x: 0.067961165, y: null}, {x: 0.095658572, y: null}, {x: 0.11622807, y: null}, {x: 0.100942127, y: null}, {x: 0.123679304, y: null}, {x: 0.309090909, y: null}, {x: 0.414570685, y: null}, {x: 0.207396302, y: null}, {x: 0.174016687, y: null}, {x: 0.076923077, y: null}, {x: 0.074534161, y: null}, {x: 0.083921016, y: null}, {x: 0.04592721, y: null}, {x: 0.229969419, y: null}, {x: 0.023636364, y: null}, {x: 0.021164021, y: null}, {x: 0.160166604, y: null}, {x: 0.080745342, y: null}, {x: 0.123042506, y: null}, {x: 0.023062731, y: null}, {x: 0.211988304, y: null}, {x: 0.028213166, y: null}, {x: 0.023900574, y: null}, {x: 0.037190083, y: null}, {x: 0.056831923, y: null}, {x: 0.03030303, y: null}, {x: 0.049744898, y: null}, {x: 0.095709571, y: null}, {x: 0.0, y: null}, {x: 0.052213394, y: null}, {x: 0.0, y: null}, {x: 0.020689655, y: null}, {x: 0.167291312, y: null}, {x: 0.104875805, y: null}, {x: 0.021582734, y: null}, {x: 0.082179931, y: null}, {x: 0.051764706, y: null}, {x: 0.094997473, y: null}, {x: 0.067567568, y: null}, {x: 0.210305572, y: null}, {x: 0.035020936, y: null}, {x: 0.165474975, y: null}, {x: 0.091651543, y: null}, {x: 0.022146508, y: null}, {x: 0.047930283, y: null}, {x: 0.029919448, y: null}, {x: 0.098017621, y: null}, {x: 0.14973262, y: null}, {x: 0.034650456, y: null}, {x: 0.101278269, y: null}, {x: 0.0, y: null}, {x: 0.028257457, y: null}, {x: 0.047450425, y: null}, {x: 0.0, y: null}, {x: 0.069802731, y: null}, {x: 0.021949078, y: null}, {x: 0.097122302, y: null}, {x: 0.076965066, y: null}, {x: 0.0, y: null}, {x: 0.030025021, y: null}, {x: 0.188588008, y: null}, {x: 0.186584426, y: null}, {x: 0.006224066, y: null}, {x: 0.0, y: null}, {x: 0.032563025, y: null}, {x: 0.032900433, y: null}, {x: 0.032497679, y: null}, {x: 0.019271949, y: null}, {x: 0.006402049, y: null}, {x: 0.133363069, y: null}, {x: 0.011144449, y: null}, {x: 0.046875, y: null}, {x: 0.0823219, y: null}, {x: 0.092278719, y: null}, {x: 0.058413252, y: null}, {x: 0.09210004, y: null}, {x: 0.029126214, y: null}, {x: 0.181265207, y: null}, {x: 0.14274571, y: null}, {x: 0.120698254, y: null}, {x: 0.125707814, y: null}, {x: 0.045277127, y: null}, {x: 0.142576205, y: null}, {x: 0.299007444, y: null}, {x: 0.170212766, y: null}, {x: 0.157000586, y: null}, {x: 0.027066216, y: null}, {x: 0.01754386, y: null}, {x: 0.060702875, y: null}, {x: 0.039123631, y: null}, {x: 0.013298855, y: null}, {x: 0.086834734, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.039500202, y: null}, {x: 0.037804435, y: null}, {x: 0.267401392, y: null}, {x: 0.220166513, y: null}, {x: 0.011228534, y: null}, {x: 0.0, y: null}, {x: 0.150422535, y: null}, {x: 0.0, y: null}, {x: 0.304878049, y: null}, {x: 0.106789717, y: null}, {x: 0.056280587, y: null}, {x: 0.150065531, y: null}, {x: 0.115853659, y: null}, {x: 0.337142857, y: null}, {x: 0.10259301, y: null}, {x: 0.184615385, y: null}, {x: 0.018297237, y: null}, {x: 0.054405677, y: null}, {x: 0.122971286, y: null}, {x: 0.012399708, y: null}, {x: 0.038372985, y: null}, {x: 0.27161894, y: null}, {x: 0.0, y: null}, {x: 0.079526227, y: null}, {x: 0.080479953, y: null}, {x: 0.01501251, y: null}, {x: 0.043522267, y: null}, {x: 0.0, y: null}, {x: 0.216349542, y: null}, {x: 0.197278912, y: null}, {x: 0.115218731, y: null}, {x: 0.142099057, y: null}, {x: 0.091974752, y: null}, {x: 0.038776389, y: null}, {x: 0.0, y: null}, {x: 0.065751858, y: null}, {x: 0.03978907, y: null}, {x: 0.105875832, y: null}, {x: 0.018276762, y: null}, {x: 0.071559633, y: null}, {x: 0.065749235, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035146444, y: null}, {x: 0.160971223, y: null}, {x: 0.0, y: null}, {x: 0.194786387, y: null}, {x: 0.309343434, y: null}, {x: 0.19538835, y: null}, {x: 0.236316247, y: null}, {x: 0.396019496, y: null}, {x: 0.118527043, y: null}, {x: 0.067320704, y: null}, {x: 0.084677419, y: null}, {x: 0.062948207, y: null}, {x: 0.092592593, y: null}, {x: 0.092065868, y: null}, {x: 0.11732852, y: null}, {x: 0.189245088, y: null}, {x: 0.065173116, y: null}, {x: 0.060016221, y: null}, {x: 0.097799511, y: null}, {x: 0.314457029, y: null}, {x: 0.503213368, y: null}, {x: 0.021934197, y: null}, {x: 0.02, y: null}, {x: 0.037628278, y: null}, {x: 0.052132701, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027796383, y: null}, {x: 0.054054054, y: null}, {x: 0.0, y: null}, {x: 0.095744681, y: null}, {x: 0.059792028, y: null}, {x: 0.025945946, y: null}, {x: 0.089242054, y: null}, {x: 0.018331226, y: null}, {x: 0.164281626, y: null}, {x: 0.028423773, y: null}, {x: 0.042918455, y: null}, {x: 0.046122449, y: null}, {x: 0.212914485, y: null}, {x: 0.03815844, y: null}, {x: 0.110869565, y: null}, {x: 0.088809035, y: null}, {x: 0.112979153, y: null}, {x: 0.111278196, y: null}, {x: 0.015306122, y: null}, {x: 0.065473925, y: null}, {x: 0.046066619, y: null}, {x: 0.091017964, y: null}, {x: 0.064041995, y: null}, {x: 0.119047619, y: null}, {x: 0.161263508, y: null}, {x: 0.051794639, y: null}, {x: 0.038461538, y: null}, {x: 0.421978022, y: null}, {x: 0.025679758, y: null}, {x: 0.074144487, y: null}, {x: 0.37, y: null}, {x: 0.092352092, y: null}, {x: 0.034090909, y: null}, {x: 0.366819747, y: null}, {x: 0.069785884, y: null}, {x: 0.134234234, y: null}, {x: 0.008368201, y: null}, {x: 0.034343434, y: null}, {x: 0.296446701, y: null}, {x: 0.148106904, y: null}, {x: 0.038363171, y: null}, {x: 0.150596878, y: null}, {x: 0.149797571, y: null}, {x: 0.066666667, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.251308901, y: null}, {x: 0.055276382, y: null}, {x: 0.033946252, y: null}, {x: 0.202775636, y: null}, {x: 0.20516129, y: null}, {x: 0.137757948, y: null}, {x: 0.328648649, y: null}, {x: 0.166921899, y: null}, {x: 0.232832618, y: null}, {x: 0.282501757, y: null}, {x: 0.53539823, y: null}, {x: 0.116178067, y: null}, {x: 0.143933685, y: null}, {x: 0.123681687, y: null}, {x: 0.138029059, y: null}, {x: 0.030693069, y: null}, {x: 0.122841966, y: null}, {x: 0.17816092, y: null}, {x: 0.130067568, y: null}, {x: 0.183757743, y: null}, {x: 0.333138516, y: null}, {x: 0.28049952, y: null}, {x: 0.337325349, y: null}, {x: 0.317662861, y: null}, {x: 0.414583333, y: null}, {x: 0.204545455, y: null}, {x: 0.073529412, y: null}, {x: 0.032258065, y: null}, {x: 0.478995654, y: null}, {x: 0.304951691, y: null}, {x: 0.151179941, y: null}, {x: 0.279259663, y: null}, {x: 0.421420256, y: null}, {x: 0.12864494, y: null}, {x: 0.460285132, y: null}, {x: 0.118672199, y: null}, {x: 0.758037225, y: null}, {x: 0.270609319, y: null}, {x: 0.311428571, y: null}, {x: 0.055952381, y: null}, {x: 0.156995052, y: null}, {x: 0.189326557, y: null}, {x: 0.0, y: null}, {x: 0.032206119, y: null}, {x: 0.030685921, y: null}, {x: 0.180958013, y: null}, {x: 0.399301513, y: null}, {x: 0.763809524, y: null}, {x: 0.301276596, y: null}, {x: 0.409141583, y: null}, {x: 0.435582822, y: null}, {x: 0.314685315, y: null}, {x: 0.26982012, y: null}, {x: 0.146877749, y: null}, {x: 0.207492795, y: null}, {x: 0.367272727, y: null}, {x: 0.161939616, y: null}, {x: 0.09703504, y: null}, {x: 0.287692308, y: null}, {x: 0.210185934, y: null}, {x: 0.215801887, y: null}, {x: 0.280946602, y: null}, {x: 0.128497409, y: null}, {x: 0.529963899, y: null}, {x: 0.191881919, y: null}, {x: 0.259142212, y: null}, {x: 0.094492441, y: null}, {x: 0.18767507, y: null}, {x: 0.396480331, y: null}, {x: 0.116883117, y: null}, {x: 0.118780096, y: null}, {x: 0.260273973, y: null}, {x: 0.262370541, y: null}, {x: 0.557233317, y: null}, {x: 0.187552921, y: null}, {x: 0.073234984, y: null}, {x: 0.132596685, y: null}, {x: 0.0, y: null}, {x: 0.077565632, y: null}, {x: 0.057627119, y: null}, {x: 0.090775988, y: null}, {x: 0.193681319, y: null}, {x: 0.122368421, y: null}, {x: 0.01, y: null}, {x: 0.179289026, y: null}, {x: 0.220543807, y: null}, {x: 0.254048583, y: null}, {x: 0.223684211, y: null}, {x: 0.056853583, y: null}, {x: 0.014242116, y: null}, {x: 0.145336226, y: null}, {x: 0.241541353, y: null}, {x: 0.048834628, y: null}, {x: 0.027912621, y: null}, {x: 0.095522388, y: null}, {x: 0.166777852, y: null}, {x: 0.057078652, y: null}, {x: 0.100645161, y: null}, {x: 0.080961417, y: null}, {x: 0.134481495, y: null}, {x: 0.135396518, y: null}, {x: 0.421357616, y: null}, {x: 0.05068836, y: null}, {x: 0.162844037, y: null}, {x: 0.189566116, y: null}, {x: 0.23923445, y: null}, {x: 0.290086494, y: null}, {x: 0.199749269, y: null}, {x: 0.026696329, y: null}, {x: 0.265240642, y: null}, {x: 0.313575526, y: null}, {x: 0.282180717, y: null}, {x: 0.149102623, y: null}, {x: 0.0, y: null}, {x: 0.080589255, y: null}, {x: 0.249742002, y: null}, {x: 0.049832295, y: null}, {x: 0.413069909, y: null}, {x: 0.220733427, y: null}, {x: 0.100917431, y: null}, {x: 0.104424779, y: null}, {x: 0.482122261, y: null}, {x: 0.221273292, y: null}, {x: 0.267625899, y: null}, {x: 0.244877561, y: null}, {x: 0.034391534, y: null}, {x: 0.223984143, y: null}, {x: 0.144946237, y: null}, {x: 0.182076814, y: null}, {x: 0.0, y: null}, {x: 0.069331158, y: null}, {x: 0.067472306, y: null}, {x: 0.149544864, y: null}, {x: 0.107113655, y: null}, {x: 0.101718213, y: null}, {x: 0.132591562, y: null}, {x: 0.149797571, y: null}, {x: 0.052064632, y: null}, {x: 0.077085533, y: null}, {x: 0.07309322, y: null}, {x: 0.083844581, y: null}, {x: 0.380784175, y: null}, {x: 0.128016086, y: null}, {x: 0.02739726, y: null}, {x: 0.109820486, y: null}, {x: 0.060491493, y: null}, {x: 0.038961039, y: null}, {x: 0.337303478, y: null}, {x: 0.142279164, y: null}, {x: 0.257053292, y: null}, {x: 0.010899183, y: null}, {x: 0.0, y: null}, {x: 0.389261745, y: null}, {x: 0.203265766, y: null}, {x: 0.048128342, y: null}, {x: 0.428822496, y: null}, {x: 0.125187406, y: null}, {x: 0.183699871, y: null}, {x: 0.365217391, y: null}, {x: 0.083011583, y: null}, {x: 0.131350682, y: null}, {x: 0.599037691, y: null}, {x: 0.198624905, y: null}, {x: 0.248782647, y: null}, {x: 0.183242507, y: null}, {x: 0.163619744, y: null}, {x: 0.362244898, y: null}, {x: 0.081490105, y: null}, {x: 0.012942779, y: null}, {x: 0.132118451, y: null}, {x: 0.146109052, y: null}, {x: 0.191205863, y: null}, {x: 0.140916808, y: null}, {x: 0.115023474, y: null}, {x: 0.090116279, y: null}, {x: 0.204252577, y: null}, {x: 0.013812155, y: null}, {x: 0.171396141, y: null}, {x: 0.106180666, y: null}, {x: 0.133086876, y: null}, {x: 0.059069212, y: null}, {x: 0.229813665, y: null}, {x: 0.065367693, y: null}, {x: 0.053472222, y: null}, {x: 0.057856273, y: null}, {x: 0.230278885, y: null}, {x: 0.127682026, y: null}, {x: 0.196399345, y: null}, {x: 0.032742888, y: null}, {x: 0.070848708, y: null}, {x: 0.073899899, y: null}, {x: 0.055962118, y: null}, {x: 0.163974152, y: null}, {x: 0.059655325, y: null}, {x: 0.091600529, y: null}, {x: 0.057534247, y: null}, {x: 0.018867925, y: null}, {x: 0.094405594, y: null}, {x: 0.222772277, y: null}, {x: 0.016427105, y: null}, {x: 0.078571429, y: null}, {x: 0.092896175, y: null}, {x: 0.157858614, y: null}, {x: 0.094854586, y: null}, {x: 0.05721393, y: null}, {x: 0.151815182, y: null}, {x: 0.098010674, y: null}, {x: 0.140700483, y: null}, {x: 0.017673654, y: null}, {x: 0.056179775, y: null}, {x: 0.222329628, y: null}, {x: 0.144329897, y: null}, {x: 0.061135371, y: null}, {x: 0.177370031, y: null}, {x: 0.059467919, y: null}, {x: 0.21601686, y: null}, {x: 0.176588294, y: null}, {x: 0.165243382, y: null}, {x: 0.054862843, y: null}, {x: 0.006674082, y: null}, {x: 0.232044199, y: null}, {x: 0.07326284, y: null}, {x: 0.269820972, y: null}, {x: 0.04854679, y: null}, {x: 0.108832808, y: null}, {x: 0.010847107, y: null}, {x: 0.249889037, y: null}, {x: 0.098278986, y: null}, {x: 0.271370421, y: null}, {x: 0.116586539, y: null}, {x: 0.058870645, y: null}, {x: 0.365825688, y: null}, {x: 0.206165703, y: null}, {x: 0.158762887, y: null}, {x: 0.229464286, y: null}, {x: 0.394827586, y: null}, {x: 0.261016949, y: null}, {x: 0.112864078, y: null}, {x: 0.070998797, y: null}, {x: 0.076038904, y: null}, {x: 0.172992057, y: null}, {x: 0.019904165, y: null}, {x: 0.115294118, y: null}, {x: 0.122736419, y: null}, {x: 0.123193916, y: null}, {x: 0.11066879, y: null}, {x: 0.092962641, y: null}, {x: 0.055805581, y: null}, {x: 0.0, y: null}, {x: 0.054852321, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089249493, y: 3617.0713}, {x: 0.067729084, y: null}, {x: 0.146468402, y: null}, {x: 0.118075802, y: null}, {x: 0.041336851, y: null}, {x: 0.078431373, y: null}, {x: 0.109090909, y: null}, {x: 0.144591612, y: null}, {x: 0.127659575, y: null}, {x: 0.139534884, y: null}, {x: 0.035260931, y: null}, {x: 0.105376344, y: null}, {x: 0.046659597, y: null}, {x: 0.12414734, y: null}, {x: 0.048164044, y: null}, {x: 0.107481215, y: null}, {x: 0.051752922, y: null}, {x: 0.020718679, y: null}, {x: 0.17755857, y: null}, {x: 0.080387685, y: null}, {x: 0.036144578, y: null}, {x: 0.063706564, y: null}, {x: 0.249818972, y: null}, {x: 0.122030238, y: null}, {x: 0.088418431, y: null}, {x: 0.400872818, y: null}, {x: 0.151394422, y: null}, {x: 0.039280644, y: null}, {x: 0.270774449, y: 21.541675}, {x: 0.322362869, y: null}, {x: 0.094758065, y: null}, {x: 0.189655172, y: null}, {x: 0.263915547, y: null}, {x: 0.034696406, y: null}, {x: 0.153397249, y: null}, {x: 0.011520737, y: null}, {x: 0.101969873, y: null}, {x: 0.044488712, y: null}, {x: 0.126760563, y: null}, {x: 0.019083969, y: null}, {x: 0.038872692, y: null}, {x: 0.237241379, y: null}, {x: 0.117843711, y: null}, {x: 0.033540373, y: null}, {x: 0.102209945, y: null}, {x: 0.149551346, y: null}, {x: 0.027206771, y: null}, {x: 0.0, y: null}, {x: 0.043303122, y: null}, {x: 0.029739777, y: null}, {x: 0.023255814, y: null}, {x: 0.142011834, y: null}, {x: 0.072378139, y: null}, {x: 0.032032032, y: null}, {x: 0.012672811, y: null}, {x: 0.085040348, y: null}, {x: 0.06805708, y: null}, {x: 0.020866774, y: null}, {x: 0.203373494, y: null}, {x: 0.0, y: null}, {x: 0.108897742, y: null}, {x: 0.0, y: null}, {x: 0.082939987, y: null}, {x: 0.047332832, y: null}, {x: 0.31887456, y: 0.021042}, {x: 0.050544323, y: null}, {x: 0.034053156, y: null}, {x: 0.115384615, y: null}, {x: 0.14994233, y: null}, {x: 0.529921943, y: null}, {x: 0.050147493, y: null}, {x: 0.272055628, y: null}, {x: 0.013659238, y: null}, {x: 0.048918823, y: null}, {x: 0.080353852, y: null}, {x: 0.18960594, y: null}, {x: 0.188690476, y: null}, {x: 0.093849658, y: null}, {x: 0.011942175, y: null}, {x: 0.262019231, y: null}, {x: 0.447311828, y: null}, {x: 0.131868132, y: null}, {x: 0.196, y: null}, {x: 0.086409396, y: null}, {x: 0.159124088, y: null}, {x: 0.100618325, y: null}, {x: 0.022764228, y: null}, {x: 0.048118985, y: null}, {x: 0.051807229, y: null}, {x: 0.054563492, y: null}, {x: 0.05986317, y: null}, {x: 0.099241902, y: null}, {x: 0.092880979, y: null}, {x: 0.038251366, y: null}, {x: 0.091295117, y: null}, {x: 0.038562092, y: null}, {x: 0.170873786, y: null}, {x: 0.03733149, y: null}, {x: 0.039647577, y: null}, {x: 0.16287304, y: null}, {x: 0.151221996, y: null}, {x: 0.073384447, y: null}, {x: 0.059597523, y: null}, {x: 0.094968108, y: null}, {x: 0.073699422, y: null}, {x: 0.158590308, y: null}, {x: 0.067057837, y: null}, {x: 0.076846307, y: null}, {x: 0.071045023, y: null}, {x: 0.098387993, y: null}, {x: 0.051512674, y: null}, {x: 0.076923077, y: null}, {x: 0.093241243, y: null}, {x: 0.098124098, y: null}, {x: 0.168787108, y: null}, {x: 0.181117534, y: null}, {x: 0.406278855, y: null}, {x: 0.194546794, y: null}, {x: 0.112351191, y: null}, {x: 0.035878565, y: null}, {x: 0.5, y: null}, {x: 0.255488267, y: null}, {x: 0.344432314, y: null}, {x: 0.343211578, y: null}, {x: 0.433145009, y: null}, {x: 0.639034628, y: null}, {x: 0.417266187, y: null}, {x: 0.267303103, y: null}, {x: 0.615835777, y: null}, {x: 0.331649832, y: null}, {x: 0.156886967, y: null}, {x: 0.441272812, y: null}, {x: 0.270967742, y: null}, {x: 0.286939943, y: null}, {x: 0.378757515, y: null}, {x: 0.349242424, y: null}, {x: 0.239508266, y: null}, {x: 0.465573771, y: null}, {x: 0.05620155, y: null}, {x: 0.036904762, y: null}, {x: 0.140243902, y: null}, {x: 0.314814815, y: null}, {x: 0.185796862, y: null}, {x: 0.687707641, y: null}, {x: 0.046722907, y: null}, {x: 0.095709571, y: null}, {x: 0.260791367, y: null}, {x: 0.598701299, y: null}, {x: 0.553299492, y: null}, {x: 0.498269896, y: null}, {x: 0.634680135, y: null}, {x: 0.46558527, y: null}, {x: 0.76848091, y: null}, {x: 0.72, y: null}, {x: 0.456996149, y: null}, {x: 0.587811271, y: null}, {x: 0.193051576, y: null}, {x: 0.172546012, y: null}, {x: 0.114702155, y: null}, {x: 0.311498754, y: null}, {x: 0.245917387, y: null}, {x: 0.531537048, y: null}, {x: 0.171641791, y: null}, {x: 0.346092504, y: null}, {x: 0.246049661, y: null}, {x: 0.052738337, y: null}, {x: 0.444564047, y: null}, {x: 0.207803595, y: null}, {x: 0.371939736, y: null}, {x: 0.562998405, y: null}, {x: 0.49867374, y: null}, {x: 0.299544419, y: null}, {x: 0.395575221, y: null}, {x: 0.337116155, y: null}, {x: 0.134394905, y: null}, {x: 0.571684588, y: null}, {x: 0.18220339, y: null}, {x: 0.45508982, y: null}, {x: 0.228740936, y: null}, {x: 0.11484375, y: null}, {x: 0.354814815, y: null}, {x: 0.050492611, y: null}, {x: 0.143243243, y: null}, {x: 0.320530726, y: null}, {x: 0.0, y: null}, {x: 0.021998743, y: null}, {x: 0.085201794, y: null}, {x: 0.125623583, y: null}, {x: 0.06385696, y: null}, {x: 0.095840131, y: null}, {x: 0.050493326, y: null}, {x: 0.274853801, y: null}, {x: 0.117236025, y: null}, {x: 0.127566895, y: null}, {x: 0.405083829, y: null}, {x: 0.022737023, y: null}, {x: 0.194879833, y: null}, {x: 0.051413882, y: null}, {x: 0.060509554, y: null}, {x: 0.146912351, y: null}, {x: 0.2594372, y: null}, {x: 0.123771224, y: null}, {x: 0.169964029, y: null}, {x: 0.115328467, y: null}, {x: 0.069962687, y: null}, {x: 0.053691275, y: null}, {x: 0.080982236, y: null}, {x: 0.050410317, y: null}, {x: 0.051724138, y: null}, {x: 0.133958104, y: null}, {x: 0.099099099, y: null}, {x: 0.075170843, y: null}, {x: 0.041021672, y: null}, {x: 0.241608119, y: null}, {x: 0.098522167, y: null}, {x: 0.152463382, y: null}, {x: 0.113876789, y: null}, {x: 0.096864112, y: null}, {x: 0.078065499, y: null}, {x: 0.288864981, y: null}, {x: 0.299629434, y: null}, {x: 0.080841639, y: null}, {x: 0.094538779, y: null}, {x: 0.15695682, y: null}, {x: 0.069782752, y: null}, {x: 0.087632509, y: null}, {x: 0.167878788, y: null}, {x: 0.166666667, y: null}, {x: 0.439655172, y: null}, {x: 0.031754875, y: null}, {x: 0.022538553, y: null}, {x: 0.072277546, y: null}, {x: 0.151598174, y: null}, {x: 0.038167939, y: null}, {x: 0.025412088, y: null}, {x: 0.07721459, y: null}, {x: 0.103146853, y: null}, {x: 0.157622739, y: null}, {x: 0.210144928, y: null}, {x: 0.013738551, y: null}, {x: 0.096124031, y: null}, {x: 0.276904474, y: null}, {x: 0.398917855, y: null}, {x: 0.24331672, y: null}, {x: 0.13739546, y: null}, {x: 0.181243414, y: null}, {x: 0.216818642, y: null}, {x: 0.348327566, y: null}, {x: 0.135714286, y: null}, {x: 0.020277481, y: null}, {x: 0.111538462, y: null}, {x: 0.029232643, y: null}, {x: 0.134110787, y: null}, {x: 0.397402597, y: null}, {x: 0.357370095, y: null}, {x: 0.21474359, y: null}, {x: 0.23681592, y: null}, {x: 0.01894452, y: null}, {x: 0.01605288, y: null}, {x: 0.107072692, y: null}, {x: 0.08198838, y: null}, {x: 0.052361396, y: null}, {x: 0.087186262, y: null}, {x: 0.143643644, y: null}, {x: 0.080068143, y: null}, {x: 0.106830123, y: null}, {x: 0.205600307, y: null}, {x: 0.181957187, y: null}, {x: 0.087020649, y: null}, {x: 0.075545171, y: null}, {x: 0.041818182, y: null}, {x: 0.06441048, y: null}, {x: 0.03091832, y: null}, {x: 0.045263649, y: null}, {x: 0.159038014, y: null}, {x: 0.158657829, y: null}, {x: 0.06133829, y: null}, {x: 0.144467641, y: null}, {x: 0.066115702, y: null}, {x: 0.177230047, y: null}, {x: 0.19245283, y: null}, {x: 0.243195266, y: null}, {x: 0.094651789, y: null}, {x: 0.047911548, y: null}, {x: 0.025206233, y: null}, {x: 0.029659141, y: null}, {x: 0.113884555, y: null}, {x: 0.039509537, y: null}, {x: 0.088382435, y: null}, {x: 0.181962528, y: null}, {x: 0.041338583, y: null}, {x: 0.205696203, y: null}, {x: 0.147486498, y: null}, {x: 0.146529563, y: null}, {x: 0.127981651, y: null}, {x: 0.073548387, y: null}, {x: 0.302480339, y: null}, {x: 0.28654005, y: null}, {x: 0.327586207, y: null}, {x: 0.50249584, y: null}, {x: 0.254677755, y: null}, {x: 0.346294938, y: null}, {x: 0.157733015, y: null}, {x: 0.255494506, y: null}, {x: 0.285456731, y: null}, {x: 0.182890856, y: null}, {x: 0.34245283, y: null}, {x: 0.244099021, y: null}, {x: 0.20649652, y: null}, {x: 0.27159309, y: null}, {x: 0.175251256, y: null}, {x: 0.339534884, y: null}, {x: 0.218929254, y: null}, {x: 0.080025608, y: null}, {x: 0.333030853, y: null}, {x: 0.031301483, y: null}, {x: 0.212090164, y: null}, {x: 0.193330111, y: null}, {x: 0.388686131, y: null}, {x: 0.312829526, y: null}, {x: 0.415384615, y: null}, {x: 0.027444254, y: null}, {x: 0.200343938, y: null}, {x: 0.061962134, y: null}, {x: 0.118226601, y: null}, {x: 0.188218391, y: null}, {x: 0.355905512, y: null}, {x: 0.530266344, y: null}, {x: 0.072205737, y: null}, {x: 0.276661515, y: null}, {x: 0.020356234, y: null}, {x: 0.051511758, y: null}, {x: 0.049261084, y: null}, {x: 0.052754982, y: null}, {x: 0.067285383, y: null}, {x: 0.10625, y: null}, {x: 0.117270789, y: null}, {x: 0.193846154, y: null}, {x: 0.155155155, y: null}, {x: 0.161396885, y: null}, {x: 0.20831618, y: null}, {x: 0.026587888, y: null}, {x: 0.325757576, y: null}, {x: 0.831460674, y: null}, {x: 0.0, y: null}, {x: 0.389156627, y: null}, {x: 0.181451613, y: null}, {x: 0.109170306, y: null}, {x: 0.319016009, y: null}, {x: 0.353518822, y: null}, {x: 0.190293742, y: null}, {x: 0.424535316, y: null}, {x: 0.226077813, y: null}, {x: 0.132901135, y: null}, {x: 0.154013015, y: null}, {x: 0.409001957, y: null}, {x: 0.129432624, y: null}, {x: 0.211666667, y: null}, {x: 0.116363636, y: null}, {x: 0.294520548, y: null}, {x: 0.204169662, y: null}, {x: 0.17875383, y: null}, {x: 0.173681091, y: null}, {x: 0.169338677, y: null}, {x: 0.224008575, y: null}, {x: 0.479535398, y: null}, {x: 0.343939394, y: null}, {x: 0.390243902, y: null}, {x: 0.141613465, y: null}, {x: 0.194128788, y: null}, {x: 0.325914149, y: null}, {x: 0.480639731, y: null}, {x: 0.0, y: null}, {x: 0.227212682, y: null}, {x: 0.25873606, y: null}, {x: 0.149275362, y: null}, {x: 0.595724907, y: null}, {x: 0.274787535, y: null}, {x: 0.450538688, y: null}, {x: 0.174461767, y: null}, {x: 0.454445664, y: null}, {x: 0.138433516, y: null}, {x: 0.120866591, y: null}, {x: 0.190366973, y: null}, {x: 0.688848921, y: null}, {x: 0.56212223, y: null}, {x: 0.344512195, y: null}, {x: 0.42582897, y: null}, {x: 0.494290375, y: null}, {x: 0.288093769, y: null}, {x: 0.359631821, y: null}, {x: 0.566131026, y: null}, {x: 0.548997773, y: null}, {x: 0.355486862, y: null}, {x: 0.294513956, y: null}, {x: 0.336260979, y: null}, {x: 0.443830571, y: null}, {x: 0.401285047, y: null}, {x: 0.272621133, y: null}, {x: 0.468921389, y: null}, {x: 0.598331347, y: null}, {x: 0.377068558, y: null}, {x: 0.0, y: null}, {x: 0.425795053, y: null}, {x: 0.0, y: null}, {x: 0.816326531, y: null}, {x: 0.27520436, y: null}, {x: 0.016393443, y: null}, {x: 0.895522388, y: null}, {x: 0.305607477, y: null}, {x: 0.31122449, y: null}, {x: 0.596368715, y: null}, {x: 0.541176471, y: null}, {x: 0.397988506, y: null}, {x: 0.478436658, y: null}, {x: 0.44344473, y: null}, {x: 0.164583333, y: null}, {x: 0.405923345, y: null}, {x: 0.605032823, y: null}, {x: 0.235488127, y: null}, {x: 0.692160612, y: null}, {x: 0.684563758, y: null}, {x: 0.134328358, y: null}, {x: 0.593564776, y: null}, {x: 0.713631157, y: null}, {x: 0.235887097, y: null}, {x: 0.448148148, y: null}, {x: 0.676923077, y: null}, {x: 0.724735322, y: null}, {x: 0.758566978, y: null}, {x: 0.896907217, y: null}, {x: 0.800488599, y: null}, {x: 0.778067885, y: null}, {x: 0.354074074, y: null}, {x: 0.488859764, y: null}, {x: 0.465158371, y: null}, {x: 0.26715462, y: null}, {x: 0.186598813, y: null}, {x: 0.241071429, y: null}, {x: 0.273712737, y: null}, {x: 0.140770252, y: null}, {x: 0.066473988, y: null}, {x: 0.072727273, y: null}, {x: 0.051006711, y: null}, {x: 0.090425532, y: null}, {x: 0.187992126, y: null}, {x: 0.105633803, y: null}, {x: 0.135135135, y: null}, {x: 0.174974568, y: null}, {x: 0.066666667, y: null}, {x: 0.146139706, y: null}, {x: 0.109737249, y: null}, {x: 0.0, y: null}, {x: 0.097385032, y: null}, {x: 0.123737374, y: null}, {x: 0.043037975, y: null}, {x: 0.254562044, y: null}, {x: 0.136363636, y: null}, {x: 0.092053501, y: null}, {x: 0.201665125, y: null}, {x: 0.128964059, y: null}, {x: 0.171821306, y: null}, {x: 0.270348837, y: null}, {x: 0.203732504, y: null}, {x: 0.142196532, y: null}, {x: 0.291184328, y: null}, {x: 0.226950355, y: null}, {x: 0.071428571, y: null}, {x: 0.112285337, y: null}, {x: 0.11577424, y: null}, {x: 0.067073171, y: null}, {x: 0.351351351, y: null}, {x: 0.0, y: null}, {x: 0.114119923, y: null}, {x: 0.122105263, y: null}, {x: 0.154598826, y: null}, {x: 0.188552189, y: 7.2}, {x: 0.116618076, y: null}, {x: 0.150337838, y: null}, {x: 0.200892857, y: null}, {x: 0.076081007, y: null}, {x: 0.687810945, y: null}, {x: 0.049010368, y: null}, {x: 0.524475525, y: null}, {x: 0.007918552, y: null}, {x: 0.031767956, y: null}, {x: 0.017045455, y: null}, {x: 0.012484395, y: null}, {x: 0.239120879, y: null}, {x: 0.041968162, y: 766.04}, {x: 0.111761264, y: 273.784}, {x: 0.06127451, y: null}, {x: 0.904428904, y: null}, {x: 0.73870682, y: null}, {x: 0.064956558, y: 2.5375}, {x: 0.322447447, y: null}, {x: 0.842781557, y: 0.473}, {x: 0.139076923, y: null}, {x: 0.437900641, y: null}, {x: 0.408608491, y: null}, {x: 0.460496614, y: null}, {x: 0.416666667, y: null}, {x: 0.24757953, y: 3.82795}, {x: 0.606349206, y: null}, {x: 0.520798669, y: null}, {x: 0.32388664, y: null}, {x: 0.31160221, y: null}, {x: 0.300348736, y: null}, {x: 0.0, y: null}, {x: 0.245294118, y: null}, {x: 0.416449086, y: null}, {x: 0.442989635, y: null}, {x: 0.354477612, y: null}, {x: 0.425998875, y: null}, {x: 0.326586937, y: null}, {x: 0.169918699, y: null}, {x: 0.548543689, y: 0.17529}, {x: 0.401254954, y: null}, {x: 0.487778959, y: null}, {x: 0.022330097, y: null}, {x: 0.137521222, y: null}, {x: 0.661381654, y: null}, {x: 0.198319328, y: null}, {x: 0.02875817, y: null}, {x: 0.113945578, y: 16.942}, {x: 0.330501931, y: null}, {x: 0.139748954, y: null}, {x: 0.038878843, y: null}, {x: 0.0, y: null}, {x: 0.09221902, y: null}, {x: 0.055882353, y: null}, {x: 0.249093108, y: null}, {x: 0.076991943, y: null}, {x: 0.166110184, y: null}, {x: 0.235136941, y: null}, {x: 0.16349481, y: null}, {x: 0.097631012, y: null}, {x: 0.003933137, y: null}, {x: 0.0, y: null}, {x: 0.03022339, y: null}, {x: 0.0, y: null}, {x: 0.131355932, y: null}, {x: 0.116465864, y: null}, {x: 0.0, y: null}, {x: 0.153994225, y: null}, {x: 0.029761905, y: null}, {x: 0.134235759, y: null}, {x: 0.131652661, y: null}, {x: 0.018450185, y: null}, {x: 0.081481481, y: null}, {x: 0.037076271, y: null}, {x: 0.571920758, y: null}, {x: 0.777462121, y: null}, {x: 0.0, y: null}, {x: 0.036605657, y: null}, {x: 0.118689105, y: null}, {x: 0.202036022, y: null}, {x: 0.105577689, y: null}, {x: 0.724522293, y: null}, {x: 0.822995461, y: null}, {x: 0.543385491, y: null}, {x: 0.820846906, y: null}, {x: 0.358778626, y: null}, {x: 0.0, y: null}, {x: 0.070057582, y: null}, {x: 0.018763797, y: null}, {x: 0.728275862, y: null}, {x: 0.212621359, y: null}, {x: 0.0, y: null}, {x: 0.384732824, y: null}, {x: 0.13312369, y: null}, {x: 0.181818182, y: null}, {x: 0.373303167, y: null}, {x: 0.790880503, y: null}, {x: 0.149897331, y: null}, {x: 0.3981026, y: null}, {x: 0.801204819, y: null}, {x: 0.202254642, y: null}, {x: 0.031731641, y: null}, {x: 0.088452088, y: null}, {x: 0.178151261, y: null}, {x: 0.41563786, y: null}, {x: 0.168336673, y: 180.08110000000002}, {x: 0.748675246, y: null}, {x: 0.061491935, y: null}, {x: 0.429326288, y: null}, {x: 0.088946459, y: null}, {x: 0.791830322, y: null}, {x: 0.177983539, y: null}, {x: 0.017738359, y: null}, {x: 0.471451876, y: null}, {x: 0.083727211, y: null}, {x: 0.324817518, y: null}, {x: 0.337236534, y: null}, {x: 0.128983308, y: null}, {x: 0.545931759, y: null}, {x: 0.335671343, y: null}, {x: 0.238836968, y: null}, {x: 0.266832918, y: null}, {x: 0.253475936, y: null}, {x: 0.412725709, y: null}, {x: 0.111324376, y: null}, {x: 0.073280722, y: null}, {x: 0.631192661, y: null}, {x: 0.0, y: null}, {x: 0.755005889, y: null}, {x: 0.544339623, y: null}, {x: 0.582938389, y: null}, {x: 0.619815668, y: null}, {x: 0.413043478, y: null}, {x: 0.588033012, y: null}, {x: 0.706018519, y: null}, {x: 0.311246731, y: null}, {x: 0.475839476, y: null}, {x: 0.647157191, y: null}, {x: 0.476973684, y: null}, {x: 0.865203762, y: null}, {x: 0.783703704, y: null}, {x: 0.501856436, y: null}, {x: 0.298107256, y: null}, {x: 0.532069971, y: null}, {x: 0.518126888, y: null}, {x: 0.250463822, y: null}, {x: 0.746835443, y: null}, {x: 0.509328358, y: null}, {x: 0.689300412, y: null}, {x: 0.495412844, y: null}, {x: 0.31641791, y: null}, {x: 0.200236967, y: null}, {x: 0.506738545, y: null}, {x: 0.345687332, y: null}, {x: 0.37861525, y: null}, {x: 0.595591543, y: null}, {x: 0.976987448, y: null}, {x: 0.844481605, y: null}, {x: 0.643523316, y: null}, {x: 0.58462867, y: null}, {x: 0.758663366, y: null}, {x: 0.460101868, y: null}, {x: 0.151724138, y: null}, {x: 0.39053729, y: null}, {x: 0.692493947, y: null}, {x: 0.514705882, y: null}, {x: 0.487639061, y: null}, {x: 0.603576751, y: null}, {x: 0.586666667, y: null}, {x: 0.615778689, y: null}, {x: 0.325141777, y: null}, {x: 0.694992413, y: null}, {x: 0.51303681, y: null}, {x: 0.318300087, y: null}, {x: 0.504288165, y: null}, {x: 0.346153846, y: null}, {x: 0.22853688, y: null}, {x: 0.419287212, y: null}, {x: 0.371482176, y: null}, {x: 0.244755245, y: null}, {x: 0.290966387, y: null}, {x: 0.602777778, y: null}, {x: 0.773447016, y: null}, {x: 0.382406563, y: null}, {x: 0.514721919, y: null}, {x: 0.747261346, y: null}, {x: 0.241803279, y: null}, {x: 0.461661342, y: null}, {x: 0.490429043, y: null}, {x: 0.592909536, y: null}, {x: 0.643564356, y: null}, {x: 0.517699115, y: null}, {x: 0.314576872, y: null}, {x: 0.546134663, y: null}, {x: 0.549786629, y: null}, {x: 0.83531746, y: null}, {x: 0.314041746, y: null}, {x: 0.53203125, y: null}, {x: 0.361679225, y: null}, {x: 0.451010887, y: null}, {x: 0.412081985, y: null}, {x: 0.460171165, y: null}, {x: 0.219753086, y: null}, {x: 0.116191904, y: null}, {x: 0.466945607, y: null}, {x: 0.335989376, y: null}, {x: 0.545343137, y: null}, {x: 0.640953717, y: null}, {x: 0.627856366, y: null}, {x: 0.209643606, y: null}, {x: 0.064144737, y: null}, {x: 0.214920071, y: null}, {x: 0.102333932, y: null}, {x: 0.224826389, y: null}, {x: 0.285928144, y: null}, {x: 0.273134328, y: null}, {x: 0.204395604, y: null}, {x: 0.362878788, y: null}, {x: 0.359875098, y: null}, {x: 0.445807771, y: null}, {x: 0.503327787, y: null}, {x: 0.597998332, y: null}, {x: 0.41677763, y: null}, {x: 0.53214049, y: null}, {x: 0.448220065, y: null}, {x: 0.367015099, y: null}, {x: 0.394822007, y: null}, {x: 0.250138351, y: null}, {x: 0.569444444, y: null}, {x: 0.423197492, y: null}, {x: 0.339401057, y: null}, {x: 0.491944146, y: null}, {x: 0.572649573, y: null}, {x: 0.567407407, y: null}, {x: 0.538541667, y: null}, {x: 0.486540379, y: null}, {x: 0.600529101, y: null}, {x: 0.643023256, y: null}, {x: 0.395259939, y: null}, {x: 0.301717089, y: null}, {x: 0.461081794, y: null}, {x: 0.173303167, y: null}, {x: 0.103938731, y: null}, {x: 0.510615711, y: null}, {x: 0.518372703, y: null}, {x: 0.503766478, y: null}, {x: 0.166389351, y: null}, {x: 0.733954451, y: null}, {x: 0.317395264, y: null}, {x: 0.09688196, y: null}, {x: 0.110144928, y: null}, {x: 0.226229508, y: null}, {x: 0.453525641, y: null}, {x: 0.156937799, y: null}, {x: 0.318333333, y: null}, {x: 0.47479776, y: null}, {x: 0.364111498, y: null}, {x: 0.481392557, y: null}, {x: 0.612654321, y: null}, {x: 0.45637229, y: null}, {x: 0.430563003, y: null}, {x: 0.425363276, y: null}, {x: 0.682602922, y: null}, {x: 0.874673629, y: null}, {x: 0.429323308, y: null}, {x: 0.424603175, y: null}, {x: 0.71483376, y: null}, {x: 0.799259945, y: null}, {x: 0.326677316, y: null}, {x: 0.459736457, y: null}, {x: 0.613037448, y: null}, {x: 0.397482014, y: null}, {x: 0.40111034, y: null}, {x: 0.193442623, y: null}, {x: 0.504368547, y: null}, {x: 0.372201493, y: null}, {x: 0.666666667, y: null}, {x: 0.301826847, y: null}, {x: 0.272094642, y: null}, {x: 0.181669394, y: null}, {x: 0.45488959, y: null}, {x: 0.10806175, y: null}, {x: 0.237348539, y: null}, {x: 0.478473581, y: null}, {x: 0.507357269, y: null}, {x: 0.06384743, y: null}, {x: 0.481380563, y: null}, {x: 0.182926829, y: null}, {x: 0.286193873, y: null}, {x: 0.079150579, y: null}, {x: 0.072124756, y: null}, {x: 0.062569832, y: null}, {x: 0.30511316, y: null}, {x: 0.014373717, y: null}, {x: 0.027659574, y: null}, {x: 0.090014065, y: null}, {x: 0.093506494, y: null}, {x: 0.110336818, y: null}, {x: 0.171532847, y: null}, {x: 0.18190128, y: null}, {x: 0.222772277, y: null}, {x: 0.357142857, y: null}, {x: 0.28902439, y: null}, {x: 0.25631769, y: null}, {x: 0.209302326, y: null}, {x: 0.046603032, y: null}, {x: 0.136363636, y: null}, {x: 0.529411765, y: null}, {x: 0.513539652, y: null}, {x: 0.694136292, y: null}, {x: 0.320615385, y: null}, {x: 0.187062937, y: null}, {x: 0.440113395, y: null}, {x: 0.3252149, y: null}, {x: 0.223073241, y: null}, {x: 0.348987854, y: null}, {x: 0.203846154, y: null}, {x: 0.485776805, y: null}, {x: 0.195416164, y: null}, {x: 0.303915839, y: null}, {x: 0.519595449, y: null}, {x: 0.446142093, y: null}, {x: 0.708469055, y: null}, {x: 0.87366167, y: null}, {x: 0.122489169, y: null}, {x: 0.103693182, y: null}, {x: 0.104, y: null}, {x: 0.285394098, y: null}, {x: 0.048181818, y: null}, {x: 0.134287662, y: null}, {x: 0.377033493, y: null}, {x: 0.173563218, y: null}, {x: 0.413541667, y: null}, {x: 0.100830368, y: null}, {x: 0.155143339, y: null}, {x: 0.124713083, y: null}, {x: 0.069981584, y: null}, {x: 0.187894073, y: null}, {x: 0.076839237, y: null}, {x: 0.080745342, y: null}, {x: 0.233638283, y: null}, {x: 0.171955403, y: null}, {x: 0.138888889, y: null}, {x: 0.035115304, y: null}, {x: 0.063522618, y: null}, {x: 0.043445693, y: null}, {x: 0.029270889, y: null}, {x: 0.088034718, y: null}, {x: 0.056213018, y: null}, {x: 0.041929925, y: null}, {x: 0.028436019, y: null}, {x: 0.219020173, y: null}, {x: 0.181372549, y: null}, {x: 0.136986301, y: null}, {x: 0.05465587, y: null}, {x: 0.222865412, y: null}, {x: 0.311187103, y: null}, {x: 0.133010883, y: null}, {x: 0.092172641, y: null}, {x: 0.20082531, y: null}, {x: 0.336290323, y: null}, {x: 0.151573539, y: null}, {x: 0.088737201, y: null}, {x: 0.021978022, y: null}, {x: 0.107039537, y: null}, {x: 0.1169464, y: null}, {x: 0.23463357, y: null}, {x: 0.280542986, y: null}, {x: 0.252886836, y: null}, {x: 0.379912664, y: null}, {x: 0.051851852, y: null}, {x: 0.178365938, y: null}, {x: 0.049338147, y: null}, {x: 0.218590398, y: null}, {x: 0.065404475, y: null}, {x: 0.176470588, y: null}, {x: 0.023722628, y: null}, {x: 0.053662074, y: null}, {x: 0.06424581, y: null}, {x: 0.118571429, y: null}, {x: 0.039665971, y: null}, {x: 0.179028133, y: null}, {x: 0.085801839, y: null}, {x: 0.073529412, y: null}, {x: 0.0, y: null}, {x: 0.083003953, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030425963, y: null}, {x: 0.140306122, y: null}, {x: 0.124223603, y: null}, {x: 0.100084104, y: null}, {x: 0.050578035, y: null}, {x: 0.023547881, y: null}, {x: 0.383681399, y: null}, {x: 0.219669118, y: null}, {x: 0.0995086, y: null}, {x: 0.429591837, y: null}, {x: 0.410125589, y: null}, {x: 0.199186992, y: null}, {x: 0.209136331, y: null}, {x: 0.317192983, y: null}, {x: 0.023696682, y: null}, {x: 0.03686934, y: null}, {x: 0.179156328, y: null}, {x: 0.356875334, y: null}, {x: 0.346666667, y: null}, {x: 0.678520626, y: null}, {x: 0.170376712, y: null}, {x: 0.13840399, y: null}, {x: 0.216666667, y: null}, {x: 0.274330042, y: null}, {x: 0.104882459, y: null}, {x: 0.421267894, y: null}, {x: 0.237215909, y: null}, {x: 0.05558066, y: null}, {x: 0.0, y: null}, {x: 0.397889977, y: null}, {x: 0.0, y: null}, {x: 0.445823928, y: null}, {x: 0.375609756, y: null}, {x: 0.260377359, y: null}, {x: 0.311534968, y: null}, {x: 0.712948518, y: null}, {x: 0.017329256, y: null}, {x: 0.381169324, y: null}, {x: 0.449019608, y: null}, {x: 0.421667966, y: null}, {x: 0.230405672, y: null}, {x: 0.207586207, y: null}, {x: 0.593484419, y: null}, {x: 0.405577689, y: null}, {x: 0.184075968, y: null}, {x: 0.953974895, y: null}, {x: 0.346986542, y: null}, {x: 0.646840149, y: null}, {x: 0.596830986, y: null}, {x: 0.440894569, y: null}, {x: 0.652017291, y: null}, {x: 0.535934292, y: null}, {x: 0.561151079, y: null}, {x: 0.50658858, y: null}, {x: 0.357833656, y: null}, {x: 0.333772219, y: 0.028}, {x: 0.289719626, y: null}, {x: 0.58984375, y: null}, {x: 0.131681877, y: null}, {x: 0.784313726, y: null}, {x: 0.203204047, y: null}, {x: 0.409610984, y: null}, {x: 0.199856219, y: null}, {x: 0.7265625, y: null}, {x: 0.327086883, y: null}, {x: 0.614224138, y: null}, {x: 0.0, y: 1.660842}, {x: 0.629213483, y: null}, {x: 0.622093023, y: null}, {x: 0.183846154, y: null}, {x: 0.954098361, y: null}, {x: 0.315033784, y: null}, {x: 0.229651163, y: null}, {x: 0.179271709, y: null}, {x: 0.195809249, y: null}, {x: 0.414746544, y: null}, {x: 0.408737864, y: null}, {x: 0.84139785, y: null}, {x: 0.367078825, y: null}, {x: 0.360212202, y: null}, {x: 0.20239521, y: null}, {x: 0.302828619, y: null}, {x: 0.183716075, y: null}, {x: 0.128787879, y: null}, {x: 0.014957265, y: null}, {x: 0.638455828, y: null}, {x: 0.611774065, y: null}, {x: 0.470467033, y: null}, {x: 0.541012216, y: null}, {x: 0.395325203, y: null}, {x: 0.131528046, y: null}, {x: 0.153016184, y: null}, {x: 0.208333333, y: null}, {x: 0.139296188, y: null}, {x: 0.068167605, y: null}, {x: 0.450508788, y: null}, {x: 0.33502907, y: null}, {x: 0.077464789, y: null}, {x: 0.43372549, y: null}, {x: 0.580346821, y: null}, {x: 0.545454546, y: null}, {x: 0.224074074, y: null}, {x: 0.293424318, y: null}, {x: 0.46031746, y: null}, {x: 0.587436333, y: null}, {x: 0.384101536, y: null}, {x: 0.163851351, y: null}, {x: 0.159649123, y: null}, {x: 0.343042071, y: null}, {x: 0.161805173, y: null}, {x: 0.184895833, y: null}, {x: 0.46461825, y: null}, {x: 0.3375, y: null}, {x: 0.237637363, y: null}, {x: 0.853658537, y: null}, {x: 0.401469606, y: null}, {x: 0.323802164, y: null}, {x: 0.296678967, y: null}, {x: 0.761218837, y: null}, {x: 0.352797203, y: null}, {x: 0.291713326, y: null}, {x: 0.376220053, y: null}, {x: 0.363836825, y: null}, {x: 0.189987163, y: null}, {x: 0.099157485, y: null}, {x: 0.373590982, y: null}, {x: 0.243617482, y: null}, {x: 0.109602816, y: null}, {x: 0.278382582, y: null}, {x: 0.249575552, y: null}, {x: 0.131124914, y: null}, {x: 0.185950413, y: null}, {x: 0.123209169, y: null}, {x: 0.063945578, y: null}, {x: 0.061007958, y: null}, {x: 0.153296267, y: null}, {x: 0.159895151, y: null}, {x: 0.257075472, y: null}, {x: 0.09310987, y: null}, {x: 0.144190871, y: null}, {x: 0.06038821, y: null}, {x: 0.958083832, y: null}, {x: 0.913043478, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.149098474, y: null}, {x: 0.13559322, y: null}, {x: 0.326656395, y: null}, {x: 0.038977913, y: null}, {x: 0.054365733, y: null}, {x: 0.229545455, y: null}, {x: 0.161816065, y: null}, {x: 0.16, y: null}, {x: 0.188829787, y: null}, {x: 0.455266955, y: null}, {x: 0.205666317, y: null}, {x: 0.109977324, y: null}, {x: 0.266155531, y: null}, {x: 0.17522245, y: null}, {x: 0.240979381, y: null}, {x: 0.4, y: null}, {x: 0.441267388, y: null}, {x: 0.190615836, y: null}, {x: 0.37191358, y: null}, {x: 0.120643432, y: null}, {x: 0.188461539, y: null}, {x: 0.4471387, y: null}, {x: 0.078555046, y: null}, {x: 0.15007736, y: null}, {x: 0.191780822, y: null}, {x: 0.046620047, y: null}, {x: 0.131648936, y: null}, {x: 0.062095731, y: null}, {x: 0.664122137, y: null}, {x: 0.150833333, y: null}, {x: 0.136498516, y: null}, {x: 0.304627249, y: null}, {x: 0.103459973, y: null}, {x: 0.157195572, y: null}, {x: 0.462550029, y: null}, {x: 0.382110092, y: null}, {x: 0.53765324, y: null}, {x: 0.545701358, y: null}, {x: 0.47224927, y: null}, {x: 0.447461629, y: null}, {x: 0.415821501, y: null}, {x: 0.146792316, y: null}, {x: 0.236842105, y: null}, {x: 0.14893617, y: null}, {x: 0.22516167, y: null}, {x: 0.138370952, y: null}, {x: 0.248789932, y: null}, {x: 0.03446419, y: null}, {x: 0.110766847, y: null}, {x: 0.129775281, y: null}, {x: 0.100196464, y: null}, {x: 0.200575816, y: null}, {x: 0.055768412, y: null}, {x: 0.201557936, y: null}, {x: 0.224975223, y: null}, {x: 0.087788131, y: null}, {x: 0.4125, y: null}, {x: 0.245819398, y: null}, {x: 0.186023622, y: null}, {x: 0.087850467, y: null}, {x: 0.296296296, y: null}, {x: 0.171052632, y: null}, {x: 0.109227872, y: null}, {x: 0.583036351, y: null}, {x: 0.136543015, y: null}, {x: 0.262032086, y: null}, {x: 0.443850267, y: null}, {x: 0.425793245, y: null}, {x: 0.106078665, y: null}, {x: 0.351926978, y: null}, {x: 0.146537842, y: null}, {x: 0.166141378, y: null}, {x: 0.720245399, y: 626.415468}, {x: 0.37398374, y: null}, {x: 0.393744988, y: null}, {x: 0.360836084, y: null}, {x: 0.016277424, y: null}, {x: 0.155405405, y: null}, {x: 0.107358263, y: null}, {x: 0.157471264, y: null}, {x: 0.21826484, y: null}, {x: 0.434280639, y: null}, {x: 0.135859519, y: null}, {x: 0.504424779, y: 0.316}, {x: 0.331439394, y: 13.296268}, {x: 0.1925, y: null}, {x: 0.70642978, y: null}, {x: 0.413407821, y: null}, {x: 0.226785714, y: null}, {x: 0.39912759, y: 0.22}, {x: 0.038442084, y: null}, {x: 0.086372361, y: null}, {x: 0.264116576, y: 0.171}, {x: 0.191969197, y: null}, {x: 0.298534799, y: null}, {x: 0.346153846, y: null}, {x: 0.609081935, y: null}, {x: 0.507186858, y: null}, {x: 0.37306317, y: null}, {x: 0.292442497, y: null}, {x: 0.335607094, y: null}, {x: 0.779331307, y: null}, {x: 0.15970696, y: null}, {x: 0.171193936, y: null}, {x: 0.612021858, y: null}, {x: 0.703883495, y: 9.505065}, {x: 0.457281553, y: null}, {x: 0.562557924, y: null}, {x: 0.501336898, y: 3.291023}, {x: 0.337520938, y: null}, {x: 0.25, y: null}, {x: 0.407685098, y: null}, {x: 0.606765328, y: null}, {x: 0.080645161, y: null}, {x: 0.079228243, y: null}, {x: 0.104516129, y: null}, {x: 0.077892325, y: null}, {x: 0.367364747, y: null}, {x: 0.068111455, y: null}, {x: 0.108819658, y: null}, {x: 0.11015583, y: null}, {x: 0.172651934, y: null}, {x: 0.111111111, y: null}, {x: 0.060164084, y: null}, {x: 0.070151307, y: null}, {x: 0.123994922, y: null}, {x: 0.038129496, y: null}, {x: 0.053426875, y: null}, {x: 0.086317723, y: null}, {x: 0.043972707, y: null}, {x: 0.465462274, y: null}, {x: 0.23566879, y: null}, {x: 0.264705882, y: null}, {x: 0.049122807, y: null}, {x: 0.269614836, y: null}, {x: 0.213986014, y: null}, {x: 0.355283308, y: null}, {x: 0.142217802, y: null}, {x: 0.323320158, y: null}, {x: 0.142641737, y: null}, {x: 0.076765309, y: null}, {x: 0.129266521, y: null}, {x: 0.05380117, y: null}, {x: 0.174522293, y: null}, {x: 0.129558541, y: null}, {x: 0.12732688, y: null}, {x: 0.120177384, y: null}, {x: 0.101956746, y: null}, {x: 0.044871795, y: null}, {x: 0.115360888, y: null}, {x: 0.242375602, y: null}, {x: 0.013727811, y: null}, {x: 0.108982827, y: null}, {x: 0.119537921, y: null}, {x: 0.13562387, y: null}, {x: 0.17057903, y: null}, {x: 0.243936567, y: 0.016676}, {x: 0.220125786, y: null}, {x: 0.196088523, y: null}, {x: 0.402489627, y: null}, {x: 0.199237369, y: null}, {x: 0.206236712, y: null}, {x: 0.407784986, y: null}, {x: 0.263336156, y: null}, {x: 0.026652452, y: null}, {x: 0.204599524, y: null}, {x: 0.187368421, y: null}, {x: 0.165945166, y: null}, {x: 0.143786127, y: null}, {x: 0.105773283, y: null}, {x: 0.068292683, y: null}, {x: 0.085781434, y: null}, {x: 0.016412661, y: null}, {x: 0.199815838, y: null}, {x: 0.200620476, y: null}, {x: 0.302513465, y: null}, {x: 0.103148024, y: null}, {x: 0.544925125, y: null}, {x: 0.021215596, y: null}, {x: 0.0664322, y: null}, {x: 0.096162528, y: null}, {x: 0.133923919, y: null}, {x: 0.095753539, y: null}, {x: 0.226061204, y: null}, {x: 0.060784314, y: null}, {x: 0.167766258, y: null}, {x: 0.05978975, y: null}, {x: 0.070167064, y: null}, {x: 0.036215817, y: null}, {x: 0.053117783, y: null}, {x: 0.131707317, y: null}, {x: 0.107004964, y: null}, {x: 0.27893368, y: null}, {x: 0.078893019, y: null}, {x: 0.10998308, y: null}, {x: 0.161182642, y: null}, {x: 0.172489083, y: null}, {x: 0.117892977, y: null}, {x: 0.175297702, y: null}, {x: 0.119463087, y: null}, {x: 0.156806843, y: null}, {x: 0.337853774, y: null}, {x: 0.518857143, y: null}, {x: 0.091755319, y: null}, {x: 0.361861862, y: null}, {x: 0.186346864, y: null}, {x: 0.288183092, y: null}, {x: 0.136073707, y: null}, {x: 0.271484375, y: null}, {x: 0.082119205, y: null}, {x: 0.054570259, y: null}, {x: 0.080757727, y: null}, {x: 0.459704881, y: null}, {x: 0.714870396, y: null}, {x: 0.249322493, y: null}, {x: 0.496815287, y: null}, {x: 0.442922374, y: null}, {x: 0.388395904, y: null}, {x: 0.424956872, y: null}, {x: 0.049279161, y: null}, {x: 0.446127946, y: null}, {x: 0.064091308, y: null}, {x: 0.098901099, y: null}, {x: 0.174726989, y: null}, {x: 0.140720598, y: null}, {x: 0.057061341, y: null}, {x: 0.541926542, y: null}, {x: 0.185299296, y: null}, {x: 0.14417435, y: null}, {x: 0.134857676, y: null}, {x: 0.027742749, y: null}, {x: 0.084090909, y: null}, {x: 0.101941748, y: null}, {x: 0.281602003, y: null}, {x: 0.290262172, y: null}, {x: 0.146823278, y: null}, {x: 0.283924843, y: null}, {x: 0.449640288, y: null}, {x: 0.159751037, y: null}, {x: 0.154223624, y: null}, {x: 0.42283105, y: null}, {x: 0.405538695, y: null}, {x: 0.332888889, y: null}, {x: 0.13303438, y: null}, {x: 0.602739726, y: null}, {x: 0.308855292, y: null}, {x: 0.25756187, y: null}, {x: 0.336330935, y: null}, {x: 0.238187078, y: null}, {x: 0.387447699, y: null}, {x: 0.293074324, y: null}, {x: 0.0, y: null}, {x: 0.704724409, y: null}, {x: 0.489795918, y: null}, {x: 0.692726373, y: null}, {x: 0.509162304, y: null}, {x: 0.524203822, y: null}, {x: 0.511111111, y: null}, {x: 0.575713241, y: null}, {x: 0.659748428, y: null}, {x: 0.570722668, y: null}, {x: 0.800833333, y: null}, {x: 0.712883436, y: null}, {x: 0.362930078, y: null}, {x: 0.702479339, y: null}, {x: 0.39157373, y: null}, {x: 0.461309524, y: null}, {x: 0.838216561, y: null}, {x: 0.330357143, y: null}, {x: 0.713744076, y: null}, {x: 0.590368609, y: null}, {x: 0.691620879, y: null}, {x: 0.400885936, y: null}, {x: 0.426078029, y: null}, {x: 0.61774744, y: null}, {x: 0.846666667, y: null}, {x: 0.0, y: null}, {x: 0.914919852, y: null}, {x: 0.631612492, y: null}, {x: 0.765822785, y: null}, {x: 0.408058608, y: null}, {x: 0.376654633, y: null}, {x: 0.759137769, y: null}, {x: 0.460877863, y: null}, {x: 0.962820513, y: null}, {x: 0.246535376, y: null}, {x: 0.494708995, y: null}, {x: 0.54665493, y: null}, {x: 0.35234657, y: null}, {x: 0.529850746, y: null}, {x: 0.703867403, y: null}, {x: 0.939643347, y: null}, {x: 0.762730834, y: null}, {x: 0.320601852, y: null}, {x: 0.268222963, y: null}, {x: 0.234782609, y: null}, {x: 0.374434389, y: null}, {x: 0.24598678, y: null}, {x: 0.352293578, y: null}, {x: 0.213042102, y: null}, {x: 0.334760885, y: null}, {x: 0.171677983, y: null}, {x: 0.349802372, y: null}, {x: 0.4289746, y: null}, {x: 0.175397094, y: null}, {x: 0.499491353, y: null}, {x: 0.15256876, y: null}, {x: 0.526505404, y: null}, {x: 0.373093682, y: null}, {x: 0.689587426, y: null}, {x: 0.535564854, y: null}, {x: 0.419400856, y: null}, {x: 0.282937365, y: null}, {x: 0.505960265, y: 563.320881}, {x: 0.512396694, y: null}, {x: 0.55448718, y: null}, {x: 0.400758534, y: null}, {x: 0.351351351, y: null}, {x: 0.551984877, y: null}, {x: 0.676271186, y: null}, {x: 0.65462754, y: null}, {x: 0.193480547, y: null}, {x: 0.349487419, y: null}, {x: 0.369491525, y: null}, {x: 0.091752577, y: null}, {x: 0.143213729, y: null}, {x: 0.197945845, y: null}, {x: 0.344911147, y: null}, {x: 0.472275335, y: null}, {x: 0.369195923, y: null}, {x: 0.301724138, y: null}, {x: 0.423828125, y: null}, {x: 0.26713948, y: null}, {x: 0.786836935, y: null}, {x: 0.0, y: null}, {x: 0.647144949, y: null}, {x: 0.370813397, y: null}, {x: 0.779329609, y: null}, {x: 0.392805755, y: null}, {x: 0.250976018, y: null}, {x: 0.391691395, y: null}, {x: 0.171388102, y: null}, {x: 0.293124246, y: null}, {x: 0.03257329, y: null}, {x: 0.105769231, y: null}, {x: 0.2324897, y: null}, {x: 0.110019646, y: null}, {x: 0.187331536, y: null}, {x: 0.232886905, y: null}, {x: 0.05028463, y: null}, {x: 0.041509434, y: null}, {x: 0.11147541, y: null}, {x: 0.200284091, y: null}, {x: 0.104834329, y: null}, {x: 0.326230713, y: null}, {x: 0.212830957, y: null}, {x: 0.229892337, y: null}, {x: 0.253539254, y: null}, {x: 0.093315685, y: null}, {x: 0.171334432, y: null}, {x: 0.017035775, y: null}, {x: 0.180933852, y: null}, {x: 0.103669725, y: null}, {x: 0.082381729, y: null}, {x: 0.05710207, y: null}, {x: 0.212732919, y: null}, {x: 0.136794396, y: 58.2}, {x: 0.23046875, y: null}, {x: 0.388836329, y: null}, {x: 0.079754601, y: null}, {x: 0.064220183, y: null}, {x: 0.065891473, y: null}, {x: 0.089265537, y: null}, {x: 0.098484848, y: null}, {x: 0.121412804, y: null}, {x: 0.071636012, y: null}, {x: 0.028651015, y: null}, {x: 0.099415205, y: null}, {x: 0.277081798, y: null}, {x: 0.032173913, y: null}, {x: 0.059291683, y: null}, {x: 0.030828516, y: null}, {x: 0.19376392, y: null}, {x: 0.042689838, y: null}, {x: 0.086629002, y: null}, {x: 0.08554674, y: null}, {x: 0.148779103, y: null}, {x: 0.225012072, y: null}, {x: 0.085658663, y: null}, {x: 0.123092574, y: null}, {x: 0.101036269, y: null}, {x: 0.088686754, y: null}, {x: 0.089260313, y: null}, {x: 0.066808059, y: null}, {x: 0.200704225, y: null}, {x: 0.254804712, y: null}, {x: 0.125153374, y: null}, {x: 0.125041024, y: null}, {x: 0.059336824, y: null}, {x: 0.048309179, y: null}, {x: 0.023809524, y: null}, {x: 0.021861777, y: null}, {x: 0.164478231, y: null}, {x: 0.159452055, y: null}, {x: 0.051624388, y: null}, {x: 0.079594017, y: null}, {x: 0.189922481, y: null}, {x: 0.062966916, y: null}, {x: 0.033414833, y: null}, {x: 0.07121058, y: null}, {x: 0.043062201, y: null}, {x: 0.013370474, y: null}, {x: 0.049490539, y: null}, {x: 0.291770574, y: null}, {x: 0.128503437, y: null}, {x: 0.091035441, y: null}, {x: 0.072281167, y: null}, {x: 0.378029079, y: null}, {x: 0.057640751, y: null}, {x: 0.064824655, y: null}, {x: 0.047761194, y: null}, {x: 0.282958199, y: null}, {x: 0.110778443, y: null}, {x: 0.0, y: null}, {x: 0.049710425, y: null}, {x: 0.205309735, y: null}, {x: 0.022093635, y: null}, {x: 0.109957239, y: null}, {x: 0.055788455, y: null}, {x: 0.099258414, y: null}, {x: 0.164835165, y: null}, {x: 0.011349306, y: null}, {x: 0.181008902, y: null}, {x: 0.039004707, y: null}, {x: 0.116424116, y: null}, {x: 0.065818998, y: null}, {x: 0.214585519, y: null}, {x: 0.008237232, y: null}, {x: 0.110149942, y: null}, {x: 0.11430527, y: null}, {x: 0.125459318, y: null}, {x: 0.014858841, y: null}, {x: 0.022026432, y: null}, {x: 0.365714286, y: null}, {x: 0.047191011, y: null}, {x: 0.102651258, y: null}, {x: 0.442716858, y: null}, {x: 0.389589905, y: null}, {x: 0.214454976, y: null}, {x: 0.417814509, y: null}, {x: 0.119771863, y: null}, {x: 0.301587302, y: null}, {x: 0.568487728, y: null}, {x: 0.076479076, y: null}, {x: 0.184641933, y: null}, {x: 0.103092784, y: null}, {x: 0.162983425, y: null}, {x: 0.027469316, y: null}, {x: 0.08627451, y: null}, {x: 0.019984013, y: null}, {x: 0.104316547, y: null}, {x: 0.174560217, y: null}, {x: 0.193661972, y: null}, {x: 0.066378845, y: null}, {x: 0.211389522, y: null}, {x: 0.198927933, y: null}, {x: 0.154576271, y: null}, {x: 0.100294985, y: null}, {x: 0.054894434, y: null}, {x: 0.11574328, y: null}, {x: 0.053484603, y: null}, {x: 0.117572291, y: null}, {x: 0.193040597, y: null}, {x: 0.07118451, y: null}, {x: 0.253968254, y: null}, {x: 0.166277129, y: null}, {x: 0.231752797, y: null}, {x: 0.210729448, y: null}, {x: 0.029944838, y: null}, {x: 0.035576638, y: null}, {x: 0.173707067, y: null}, {x: 0.0, y: null}, {x: 0.182065217, y: null}, {x: 0.208086785, y: null}, {x: 0.175537359, y: null}, {x: 0.062116041, y: null}, {x: 0.053342817, y: null}, {x: 0.050961863, y: null}, {x: 0.08186929, y: null}, {x: 0.174231332, y: null}, {x: 0.084575111, y: null}, {x: 0.141538462, y: null}, {x: 0.090909091, y: null}, {x: 0.041027766, y: null}, {x: 0.116177389, y: null}, {x: 0.08148592, y: null}, {x: 0.150557621, y: null}, {x: 0.312891114, y: null}, {x: 0.2375, y: null}, {x: 0.068212824, y: null}, {x: 0.067519545, y: null}, {x: 0.121150934, y: null}, {x: 0.012322859, y: null}, {x: 0.103762136, y: null}, {x: 0.281499203, y: null}, {x: 0.531353135, y: null}, {x: 0.531192661, y: null}, {x: 0.411413969, y: null}, {x: 0.42962963, y: null}, {x: 0.332378224, y: null}, {x: 0.259229535, y: null}, {x: 0.116621984, y: null}, {x: 0.396162528, y: null}, {x: 0.443053817, y: null}, {x: 0.216348774, y: null}, {x: 0.439892545, y: null}, {x: 0.125984252, y: null}, {x: 0.068193131, y: null}, {x: 0.358549223, y: null}, {x: 0.066871637, y: null}, {x: 0.137670197, y: null}, {x: 0.235857267, y: null}, {x: 0.198325253, y: null}, {x: 0.067734887, y: null}, {x: 0.139903515, y: null}, {x: 0.034343434, y: null}, {x: 0.072511266, y: null}, {x: 0.24797048, y: null}, {x: 0.193658955, y: null}, {x: 0.215316315, y: null}, {x: 0.381229236, y: null}, {x: 0.232831916, y: null}, {x: 0.705114255, y: null}, {x: 0.447403462, y: null}, {x: 0.860294118, y: null}, {x: 0.573271889, y: null}, {x: 0.535159141, y: null}, {x: 0.754663652, y: null}, {x: 0.271039604, y: null}, {x: 0.117948718, y: null}, {x: 0.327064595, y: null}, {x: 0.404243119, y: null}, {x: 0.317155756, y: null}, {x: 0.057017544, y: null}, {x: 0.079575597, y: null}, {x: 0.175498576, y: null}, {x: 0.042253521, y: null}, {x: 0.31218089, y: null}, {x: 0.275208914, y: null}, {x: 0.0, y: null}, {x: 0.087354918, y: null}, {x: 0.173439049, y: null}, {x: 0.2734375, y: null}, {x: 0.117002882, y: null}, {x: 0.241293532, y: null}, {x: 0.266666667, y: null}, {x: 0.12326228, y: null}, {x: 0.302752294, y: null}, {x: 0.118620038, y: null}, {x: 0.1223272, y: null}, {x: 0.356719818, y: null}, {x: 0.152706553, y: null}, {x: 0.374374374, y: null}, {x: 0.215839861, y: null}, {x: 0.116863905, y: null}, {x: 0.116147309, y: null}, {x: 0.006660324, y: null}, {x: 0.078276165, y: null}, {x: 0.096501809, y: null}, {x: 0.026209677, y: null}, {x: 0.034934498, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.0402013485, y: 44.239472399484264}, {x: 0.12383678599999999, y: 310.19354528134454}, {x: 0.2423858485, y: 158.26531643607075}, {x: 0.658750411, y: 157.87302121945515}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.0402013485, y: -14.962727625661444}, {x: 0.12383678599999999, y: 31.89959581273564}, {x: 0.2423858485, y: 4.663013532828302}, {x: 0.658750411, y: 61.884896592419835}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.0402013485, y: 103.44167242462997}, {x: 0.12383678599999999, y: 588.4874947499534}, {x: 0.2423858485, y: 311.8676193393132}, {x: 0.658750411, y: 253.86114584649047}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_MINORPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_MINORPCT.html index 112473de..e2398e17 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_MINORPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_MINORPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.105365854, y: null}, {x: 0.127701375, y: null}, {x: 0.180576631, y: null}, {x: 0.078467153, y: null}, {x: 0.223543401, y: null}, {x: 0.348920863, y: null}, {x: 0.10815402, y: null}, {x: 0.042747022, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.001912046, y: null}, {x: 0.086647727, y: null}, {x: 0.03286385, y: null}, {x: 0.159192825, y: null}, {x: 0.052013423, y: null}, {x: 0.243128964, y: null}, {x: 0.0, y: null}, {x: 0.0375, y: null}, {x: 0.08004386, y: null}, {x: 0.058378378, y: null}, {x: 0.0, y: null}, {x: 0.009084556, y: null}, {x: 0.0, y: 0.093729}, {x: 0.012643678, y: null}, {x: 0.008561644, y: null}, {x: 0.048888889, y: null}, {x: 0.020186335, y: null}, {x: 0.0, y: null}, {x: 0.214805825, y: null}, {x: 0.0, y: null}, {x: 0.074193548, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051190476, y: null}, {x: 0.11011236, y: null}, {x: 0.017365523, y: null}, {x: 0.016194332, y: null}, {x: 0.181886793, y: null}, {x: 0.086486486, y: null}, {x: 0.028037383, y: null}, {x: 0.041269841, y: null}, {x: 0.137373737, y: null}, {x: 0.009943182, y: null}, {x: 0.156698565, y: null}, {x: 0.0, y: null}, {x: 0.009114583, y: null}, {x: 0.007532957, y: null}, {x: 0.0, y: null}, {x: 0.065433855, y: null}, {x: 0.101090188, y: null}, {x: 0.043076923, y: null}, {x: 0.104584527, y: null}, {x: 0.084302326, y: null}, {x: 0.077343039, y: null}, {x: 0.039269406, y: null}, {x: 0.0, y: null}, {x: 0.112244898, y: null}, {x: 0.0, y: null}, {x: 0.056050955, y: null}, {x: 0.123636364, y: null}, {x: 0.04192229, y: null}, {x: 0.01509434, y: null}, {x: 0.027383367, y: null}, {x: 0.563432836, y: null}, {x: 0.116087213, y: null}, {x: 0.018032787, y: null}, {x: 0.079545455, y: null}, {x: 0.087142857, y: null}, {x: 0.016791045, y: null}, {x: 0.065853659, y: null}, {x: 0.0, y: null}, {x: 0.024526198, y: null}, {x: 0.046783626, y: null}, {x: 0.101596517, y: null}, {x: 0.062247373, y: null}, {x: 0.037094281, y: null}, {x: 0.023049645, y: null}, {x: 0.165695793, y: null}, {x: 0.311848958, y: null}, {x: 0.035984848, y: null}, {x: 0.086508754, y: null}, {x: 0.140625, y: null}, {x: 0.179422836, y: null}, {x: 0.403317329, y: null}, {x: 0.567177638, y: null}, {x: 0.18296893, y: null}, {x: 0.135164835, y: null}, {x: 0.341350601, y: null}, {x: 0.067692308, y: null}, {x: 0.043478261, y: null}, {x: 0.096518987, y: null}, {x: 0.075898802, y: null}, {x: 0.020446097, y: null}, {x: 0.049848943, y: null}, {x: 0.036156513, y: null}, {x: 0.048543689, y: null}, {x: 0.168769716, y: null}, {x: 0.57037037, y: null}, {x: 0.408592322, y: null}, {x: 0.336188437, y: null}, {x: 0.200578991, y: null}, {x: 0.160550459, y: null}, {x: 0.520951888, y: null}, {x: 0.433333333, y: null}, {x: 0.746478873, y: null}, {x: 0.252702703, y: null}, {x: 0.119700748, y: null}, {x: 0.014677104, y: null}, {x: 0.332987552, y: null}, {x: 0.125859697, y: null}, {x: 0.053949904, y: null}, {x: 0.166951567, y: null}, {x: 0.077544426, y: null}, {x: 0.144, y: null}, {x: 0.188337273, y: null}, {x: 0.182937956, y: null}, {x: 0.150515464, y: null}, {x: 0.059340659, y: null}, {x: 0.238270469, y: null}, {x: 0.07963595, y: null}, {x: 0.090233546, y: null}, {x: 0.003418154, y: null}, {x: 0.0, y: null}, {x: 0.02514193, y: null}, {x: 0.05987395, y: null}, {x: 0.150637312, y: null}, {x: 0.055606199, y: null}, {x: 0.094919786, y: null}, {x: 0.052230686, y: null}, {x: 0.068503351, y: null}, {x: 0.025925926, y: null}, {x: 0.099388379, y: null}, {x: 0.005780347, y: null}, {x: 0.0, y: null}, {x: 0.297540208, y: null}, {x: 0.085231447, y: null}, {x: 0.047406807, y: null}, {x: 0.160447761, y: null}, {x: 0.13250678, y: null}, {x: 0.021102498, y: null}, {x: 0.028156222, y: null}, {x: 0.155704698, y: null}, {x: 0.069627851, y: null}, {x: 0.068255688, y: null}, {x: 0.147706422, y: null}, {x: 0.056720099, y: null}, {x: 0.180944756, y: null}, {x: 0.445935869, y: null}, {x: 0.005617978, y: null}, {x: 0.211564626, y: null}, {x: 0.0, y: null}, {x: 0.017563117, y: null}, {x: 0.0, y: null}, {x: 0.132424538, y: null}, {x: 0.0, y: null}, {x: 0.120667523, y: null}, {x: 0.155844156, y: null}, {x: 0.0, y: null}, {x: 0.011111111, y: null}, {x: 0.035864979, y: null}, {x: 0.117985612, y: null}, {x: 0.006263048, y: null}, {x: 0.169873107, y: null}, {x: 0.161861758, y: null}, {x: 0.069643806, y: null}, {x: 0.210958904, y: null}, {x: 0.062897791, y: null}, {x: 0.226586103, y: null}, {x: 0.100110011, y: null}, {x: 0.228985507, y: null}, {x: 0.0416, y: null}, {x: 0.041720991, y: null}, {x: 0.075301205, y: null}, {x: 0.042037187, y: null}, {x: 0.049303944, y: null}, {x: 0.264023211, y: null}, {x: 0.006952491, y: null}, {x: 0.215423303, y: null}, {x: 0.091932458, y: null}, {x: 0.0, y: null}, {x: 0.064651553, y: null}, {x: 0.085135135, y: null}, {x: 0.083086053, y: null}, {x: 0.111438183, y: null}, {x: 0.094222222, y: null}, {x: 0.280571074, y: null}, {x: 0.357062147, y: null}, {x: 0.186248912, y: null}, {x: 0.069781931, y: null}, {x: 0.0, y: null}, {x: 0.067882472, y: null}, {x: 0.681473456, y: null}, {x: 0.522123894, y: null}, {x: 0.295514512, y: null}, {x: 0.0, y: null}, {x: 0.354925776, y: null}, {x: 0.389692586, y: null}, {x: 0.078374456, y: null}, {x: 0.300729927, y: null}, {x: 0.278776978, y: null}, {x: 0.196078431, y: null}, {x: 0.473479948, y: null}, {x: 0.356513222, y: null}, {x: 0.393630573, y: null}, {x: 0.180754226, y: null}, {x: 0.607526882, y: null}, {x: 0.125, y: null}, {x: 0.174358974, y: null}, {x: 0.101910828, y: null}, {x: 0.085222121, y: null}, {x: 0.066115702, y: null}, {x: 0.074225122, y: null}, {x: 0.130674003, y: null}, {x: 0.199579832, y: null}, {x: 0.764444444, y: null}, {x: 0.346153846, y: null}, {x: 0.325123153, y: null}, {x: 0.527827648, y: null}, {x: 0.032423208, y: null}, {x: 0.056712963, y: null}, {x: 0.0, y: null}, {x: 0.147959184, y: null}, {x: 0.109707972, y: null}, {x: 0.185028249, y: null}, {x: 0.151345292, y: null}, {x: 0.032191781, y: null}, {x: 0.450931677, y: null}, {x: 0.173245614, y: null}, {x: 0.043789097, y: null}, {x: 0.433802817, y: null}, {x: 0.051825677, y: null}, {x: 0.132575758, y: null}, {x: 0.087141339, y: null}, {x: 0.079012346, y: null}, {x: 0.164910432, y: null}, {x: 0.0, y: null}, {x: 0.037076271, y: null}, {x: 0.0, y: null}, {x: 0.004810997, y: null}, {x: 0.072649573, y: null}, {x: 0.116049383, y: null}, {x: 0.185783522, y: null}, {x: 0.0546875, y: null}, {x: 0.008190618, y: null}, {x: 0.068567026, y: null}, {x: 0.056057866, y: null}, {x: 0.338461539, y: null}, {x: 0.043539326, y: null}, {x: 0.089788732, y: null}, {x: 0.060455192, y: null}, {x: 0.096128171, y: null}, {x: 0.047819972, y: 0.175}, {x: 0.028824834, y: null}, {x: 0.223713647, y: null}, {x: 0.003062787, y: null}, {x: 0.03803681, y: null}, {x: 0.025835866, y: null}, {x: 0.526992288, y: null}, {x: 0.147018031, y: null}, {x: 0.093877551, y: null}, {x: 0.273966766, y: null}, {x: 0.0, y: null}, {x: 0.129432624, y: null}, {x: 0.234777839, y: null}, {x: 0.078154426, y: null}, {x: 0.288143599, y: null}, {x: 0.16075388, y: null}, {x: 0.103986135, y: null}, {x: 0.169312169, y: null}, {x: 0.126778784, y: null}, {x: 0.087665647, y: null}, {x: 0.046774194, y: null}, {x: 0.176399027, y: null}, {x: 0.078152753, y: null}, {x: 0.0, y: null}, {x: 0.124863089, y: null}, {x: 0.007912957, y: null}, {x: 0.015957447, y: null}, {x: 0.055993001, y: null}, {x: 0.024819028, y: null}, {x: 0.168234065, y: null}, {x: 0.033358605, y: null}, {x: 0.080824089, y: null}, {x: 0.21902378, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.211151737, y: null}, {x: 0.09883236, y: null}, {x: 0.274376417, y: null}, {x: 0.066914498, y: null}, {x: 0.05345502, y: null}, {x: 0.119131044, y: null}, {x: 0.123703704, y: null}, {x: 0.035940803, y: null}, {x: 0.171606864, y: null}, {x: 0.010538642, y: null}, {x: 0.038659794, y: null}, {x: 0.104722793, y: null}, {x: 0.025542784, y: null}, {x: 0.072033898, y: null}, {x: 0.162601626, y: null}, {x: 0.049731183, y: null}, {x: 0.111776447, y: null}, {x: 0.075938567, y: null}, {x: 0.123469388, y: null}, {x: 0.004201681, y: null}, {x: 0.069064748, y: null}, {x: 0.075785582, y: null}, {x: 0.022698613, y: null}, {x: 0.093304061, y: null}, {x: 0.126888218, y: null}, {x: 0.031088083, y: null}, {x: 0.043604651, y: null}, {x: 0.059933407, y: null}, {x: 0.144288577, y: null}, {x: 0.082706767, y: null}, {x: 0.062365591, y: null}, {x: 0.103448276, y: null}, {x: 0.049327354, y: null}, {x: 0.116154873, y: null}, {x: 0.079656863, y: null}, {x: 0.038343558, y: null}, {x: 0.030959752, y: null}, {x: 0.137010676, y: null}, {x: 0.062062937, y: null}, {x: 0.070234114, y: null}, {x: 0.039125432, y: null}, {x: 0.124277457, y: null}, {x: 0.14924297, y: null}, {x: 0.128827878, y: null}, {x: 0.181007579, y: null}, {x: 0.264024704, y: null}, {x: 0.182767624, y: null}, {x: 0.114482759, y: null}, {x: 0.13799448, y: null}, {x: 0.069688109, y: null}, {x: 0.440084836, y: null}, {x: 0.127807901, y: null}, {x: 0.07247191, y: null}, {x: 0.192026951, y: null}, {x: 0.256003098, y: null}, {x: 0.247634069, y: null}, {x: 0.069755336, y: null}, {x: 0.091484465, y: null}, {x: 0.162002946, y: null}, {x: 0.173322005, y: null}, {x: 0.003348962, y: null}, {x: 0.253140097, y: null}, {x: 0.190780142, y: null}, {x: 0.119382023, y: null}, {x: 0.103550296, y: null}, {x: 0.041048035, y: null}, {x: 0.041136874, y: null}, {x: 0.153524492, y: null}, {x: 0.255386232, y: null}, {x: 0.272606383, y: null}, {x: 0.132923242, y: null}, {x: 0.110393423, y: null}, {x: 0.163822526, y: null}, {x: 0.11625239, y: null}, {x: 0.12860676, y: null}, {x: 0.090605892, y: null}, {x: 0.104689564, y: null}, {x: 0.04501845, y: null}, {x: 0.066892464, y: null}, {x: 0.056030389, y: null}, {x: 0.072949527, y: null}, {x: 0.149312377, y: null}, {x: 0.282181357, y: null}, {x: 0.15862069, y: null}, {x: 0.16550765, y: null}, {x: 0.072987722, y: null}, {x: 0.341517857, y: null}, {x: 0.193345324, y: null}, {x: 0.50660066, y: null}, {x: 0.222645618, y: null}, {x: 0.142857143, y: null}, {x: 0.060335782, y: null}, {x: 0.113872832, y: null}, {x: 0.181596884, y: null}, {x: 0.204612655, y: null}, {x: 0.079749478, y: null}, {x: 0.427392739, y: null}, {x: 0.34904271, y: null}, {x: 0.192474674, y: null}, {x: 0.284760845, y: null}, {x: 0.169529837, y: null}, {x: 0.358309318, y: null}, {x: 0.350997935, y: null}, {x: 0.1843927, y: null}, {x: 0.31897712, y: null}, {x: 0.546705998, y: null}, {x: 0.254285714, y: null}, {x: 0.264947245, y: null}, {x: 0.132394366, y: null}, {x: 0.1425, y: 33.039}, {x: 0.091035441, y: null}, {x: 0.512331317, y: null}, {x: 0.25782957, y: null}, {x: 0.504943503, y: null}, {x: 0.202027027, y: null}, {x: 0.25, y: null}, {x: 0.157495256, y: null}, {x: 0.187030075, y: null}, {x: 0.140300935, y: null}, {x: 0.323996265, y: null}, {x: 0.168269231, y: null}, {x: 0.110200364, y: null}, {x: 0.092343659, y: null}, {x: 0.039877301, y: null}, {x: 0.033057851, y: null}, {x: 0.088983051, y: null}, {x: 0.081067721, y: null}, {x: 0.026357574, y: null}, {x: 0.0, y: null}, {x: 0.047070775, y: null}, {x: 0.025242718, y: null}, {x: 0.0, y: null}, {x: 0.016577857, y: null}, {x: 0.072675599, y: null}, {x: 0.418491484, y: null}, {x: 0.383269313, y: null}, {x: 0.143283582, y: null}, {x: 0.018759019, y: null}, {x: 0.097142857, y: null}, {x: 0.340350877, y: null}, {x: 0.046613896, y: null}, {x: 0.060918947, y: null}, {x: 0.169749728, y: null}, {x: 0.211567732, y: null}, {x: 0.0, y: null}, {x: 0.134290844, y: null}, {x: 0.215109573, y: null}, {x: 0.0, y: null}, {x: 0.073217726, y: null}, {x: 0.053984576, y: null}, {x: 0.102941177, y: null}, {x: 0.077723043, y: null}, {x: 0.102367243, y: null}, {x: 0.301497161, y: null}, {x: 0.190176322, y: null}, {x: 0.043165468, y: null}, {x: 0.166111111, y: null}, {x: 0.078163772, y: null}, {x: 0.123096447, y: null}, {x: 0.106224628, y: null}, {x: 0.201897019, y: null}, {x: 0.112547529, y: null}, {x: 0.142446043, y: null}, {x: 0.089853826, y: null}, {x: 0.304609218, y: null}, {x: 0.23088685, y: null}, {x: 0.056456456, y: null}, {x: 0.150236967, y: null}, {x: 0.210780926, y: null}, {x: 0.2651341, y: null}, {x: 0.439701897, y: null}, {x: 0.281912494, y: null}, {x: 0.104426788, y: null}, {x: 0.607964105, y: null}, {x: 0.281208936, y: null}, {x: 0.178631052, y: null}, {x: 0.118983957, y: null}, {x: 0.057737814, y: null}, {x: 0.098333333, y: null}, {x: 0.10778781, y: null}, {x: 0.218627998, y: null}, {x: 0.130484989, y: null}, {x: 0.018786127, y: null}, {x: 0.072727273, y: null}, {x: 0.077284946, y: null}, {x: 0.0, y: null}, {x: 0.021528525, y: 999.999999}, {x: 0.113612004, y: null}, {x: 0.283961437, y: null}, {x: 0.042682927, y: null}, {x: 0.0, y: null}, {x: 0.007020623, y: null}, {x: 0.054632867, y: null}, {x: 0.011997177, y: null}, {x: 0.136391068, y: null}, {x: 0.012314379, y: null}, {x: 0.165167095, y: null}, {x: 0.07540395, y: null}, {x: 0.076374019, y: null}, {x: 0.065789474, y: null}, {x: 0.01421092, y: null}, {x: 0.018181818, y: null}, {x: 0.343534057, y: null}, {x: 0.393822394, y: null}, {x: 0.109207709, y: null}, {x: 0.299324324, y: null}, {x: 0.126465145, y: null}, {x: 0.439949431, y: null}, {x: 0.484123107, y: null}, {x: 0.3299389, y: null}, {x: 0.377239199, y: null}, {x: 0.126410835, y: null}, {x: 0.391140434, y: 95.803564}, {x: 0.148487626, y: null}, {x: 0.311876248, y: 1904.333217}, {x: 0.129770992, y: null}, {x: 0.290563476, y: null}, {x: 0.325311203, y: 33.812967}, {x: 0.226287263, y: null}, {x: 0.19058296, y: null}, {x: 0.074882995, y: null}, {x: 0.11875, y: 13.403297}, {x: 0.427721088, y: null}, {x: 0.233539095, y: null}, {x: 0.1064764, y: null}, {x: 0.371531346, y: null}, {x: 0.038932147, y: null}, {x: 0.164929491, y: null}, {x: 0.111464968, y: null}, {x: 0.064239829, y: null}, {x: 0.553734062, y: null}, {x: 0.3091354, y: null}, {x: 0.195307546, y: null}, {x: 0.511737089, y: null}, {x: 0.252288912, y: null}, {x: 0.673400673, y: null}, {x: 0.466556565, y: null}, {x: 0.599202393, y: null}, {x: 0.07117853, y: 29.512963}, {x: 0.261124122, y: null}, {x: 0.661861075, y: null}, {x: 0.282131661, y: null}, {x: 0.333941606, y: null}, {x: 0.320334262, y: null}, {x: 0.162935323, y: null}, {x: 0.553374233, y: null}, {x: 0.220845481, y: null}, {x: 0.367826905, y: null}, {x: 0.606408706, y: null}, {x: 0.428832117, y: null}, {x: 0.425287356, y: null}, {x: 0.393534002, y: null}, {x: 0.499643621, y: null}, {x: 0.40228013, y: null}, {x: 0.196036801, y: null}, {x: 0.104495747, y: null}, {x: 0.247694335, y: null}, {x: 0.0, y: null}, {x: 0.111740891, y: null}, {x: 0.104570637, y: null}, {x: 0.097222222, y: null}, {x: 0.143369176, y: null}, {x: 0.247256767, y: null}, {x: 0.440318302, y: null}, {x: 0.273411371, y: null}, {x: 0.174556213, y: null}, {x: 0.26993865, y: 292.744127}, {x: 0.413441955, y: 194.570504}, {x: 0.353071145, y: 443.440785}, {x: 0.09624198, y: null}, {x: 0.344858963, y: null}, {x: 0.297734628, y: null}, {x: 0.070576541, y: null}, {x: 0.41216992, y: null}, {x: 0.089430894, y: null}, {x: 0.283662478, y: null}, {x: 0.2933213, y: null}, {x: 0.020979021, y: null}, {x: 0.142326733, y: null}, {x: 0.218645949, y: null}, {x: 0.079934747, y: null}, {x: 0.005185185, y: null}, {x: 0.021877205, y: null}, {x: 0.019487179, y: null}, {x: 0.016007114, y: null}, {x: 0.080165289, y: null}, {x: 0.048809524, y: null}, {x: 0.186153846, y: null}, {x: 0.042253521, y: null}, {x: 0.050705467, y: null}, {x: 0.080298786, y: null}, {x: 0.026431718, y: null}, {x: 0.143074581, y: null}, {x: 0.001295337, y: null}, {x: 0.117918314, y: null}, {x: 0.0, y: null}, {x: 0.076203209, y: null}, {x: 0.009615385, y: null}, {x: 0.116828929, y: null}, {x: 0.046614872, y: null}, {x: 0.043117745, y: null}, {x: 0.091375291, y: null}, {x: 0.058034217, y: null}, {x: 0.139097744, y: null}, {x: 0.0, y: null}, {x: 0.007044865, y: null}, {x: 0.015905947, y: null}, {x: 0.084431631, y: null}, {x: 0.047267997, y: null}, {x: 0.07917229, y: null}, {x: 0.0, y: null}, {x: 0.012435233, y: null}, {x: 0.029411765, y: null}, {x: 0.014955135, y: null}, {x: 0.059977578, y: null}, {x: 0.096267191, y: null}, {x: 0.292946338, y: null}, {x: 0.431599229, y: null}, {x: 0.059101655, y: null}, {x: 0.362642586, y: null}, {x: 0.053503185, y: null}, {x: 0.200823045, y: null}, {x: 0.397501837, y: null}, {x: 0.19303072, y: null}, {x: 0.084815321, y: null}, {x: 0.402857143, y: 0.12512}, {x: 0.13074205, y: null}, {x: 0.053875236, y: null}, {x: 0.115666179, y: 5.77926}, {x: 0.289068826, y: null}, {x: 0.164150943, y: null}, {x: 0.12191358, y: null}, {x: 0.217627856, y: null}, {x: 0.34057971, y: null}, {x: 0.520923521, y: null}, {x: 0.347692308, y: null}, {x: 0.496141125, y: null}, {x: 0.578330893, y: null}, {x: 0.701780415, y: 734.949067}, {x: 0.717926186, y: null}, {x: 0.472131148, y: null}, {x: 0.30548926, y: null}, {x: 0.696914701, y: null}, {x: 0.485887097, y: null}, {x: 0.756521739, y: null}, {x: 0.709813875, y: null}, {x: 0.706638116, y: null}, {x: 0.336294416, y: null}, {x: 0.202873313, y: null}, {x: 0.335480674, y: null}, {x: 0.522649781, y: null}, {x: 0.71301536, y: null}, {x: 0.79299691, y: null}, {x: 0.302861685, y: null}, {x: 0.200595829, y: null}, {x: 0.790909091, y: 11.58294}, {x: 0.611345806, y: null}, {x: 0.465714286, y: 71.329358}, {x: 0.539783002, y: null}, {x: 0.5, y: null}, {x: 0.54770318, y: null}, {x: 0.466346154, y: null}, {x: 0.850290698, y: null}, {x: 0.334841629, y: null}, {x: 0.771186441, y: null}, {x: 0.619491525, y: null}, {x: 0.798507463, y: null}, {x: 0.468407751, y: null}, {x: 0.448529412, y: null}, {x: 0.271723122, y: null}, {x: 0.791451732, y: null}, {x: 0.587115666, y: null}, {x: 0.473133287, y: null}, {x: 0.511111111, y: null}, {x: 0.609649123, y: 148.959479}, {x: 0.918666667, y: null}, {x: 0.193078324, y: null}, {x: 0.637599094, y: null}, {x: 0.492332526, y: null}, {x: 0.353466026, y: null}, {x: 0.108202443, y: null}, {x: 0.360069747, y: null}, {x: 0.266009852, y: null}, {x: 0.163120567, y: null}, {x: 0.072106262, y: null}, {x: 0.482256597, y: null}, {x: 0.481981982, y: null}, {x: 0.194842407, y: null}, {x: 0.308779011, y: null}, {x: 0.393171806, y: 291.200847}, {x: 0.280944625, y: null}, {x: 0.429058663, y: null}, {x: 0.415478615, y: null}, {x: 0.688605108, y: 123.559491}, {x: 0.403846154, y: null}, {x: 0.529829546, y: 253.998766}, {x: 0.283454988, y: 25.889026}, {x: 0.689655172, y: null}, {x: 0.327830189, y: 32.36738}, {x: 0.277248677, y: 54.925090000000004}, {x: 0.367272727, y: null}, {x: 0.083916084, y: null}, {x: 0.140888208, y: null}, {x: 0.112855741, y: null}, {x: 0.068510371, y: null}, {x: 0.06961507, y: null}, {x: 0.422695036, y: null}, {x: 0.013148283, y: null}, {x: 0.099644128, y: null}, {x: 0.135785007, y: null}, {x: 0.038819876, y: null}, {x: 0.207633588, y: null}, {x: 0.049910873, y: null}, {x: 0.057206208, y: null}, {x: 0.074529075, y: null}, {x: 0.226962457, y: null}, {x: 0.031786942, y: null}, {x: 0.277978339, y: null}, {x: 0.128274616, y: null}, {x: 0.017479301, y: null}, {x: 0.031531532, y: null}, {x: 0.092196612, y: null}, {x: 0.144349478, y: null}, {x: 0.017973856, y: 40.416186}, {x: 0.050243112, y: null}, {x: 0.043878273, y: null}, {x: 0.05679336, y: null}, {x: 0.054938632, y: null}, {x: 0.097997893, y: null}, {x: 0.023809524, y: null}, {x: 0.194297783, y: null}, {x: 0.035339064, y: null}, {x: 0.157973174, y: null}, {x: 0.078391275, y: null}, {x: 0.118937644, y: null}, {x: 0.073660714, y: null}, {x: 0.008857396, y: null}, {x: 0.069457659, y: null}, {x: 0.090103397, y: null}, {x: 0.033205619, y: null}, {x: 0.188223619, y: null}, {x: 0.323778196, y: null}, {x: 0.064375341, y: null}, {x: 0.263235294, y: null}, {x: 0.170763828, y: null}, {x: 0.0, y: null}, {x: 0.147623863, y: null}, {x: 0.215273602, y: null}, {x: 0.035479632, y: null}, {x: 0.304761905, y: null}, {x: 0.357512953, y: null}, {x: 0.156123822, y: null}, {x: 0.188461539, y: null}, {x: 0.063866513, y: null}, {x: 0.186697783, y: null}, {x: 0.262158956, y: null}, {x: 0.016722408, y: null}, {x: 0.177483444, y: null}, {x: 0.161413563, y: null}, {x: 0.204156889, y: null}, {x: 0.210573477, y: null}, {x: 0.111827957, y: null}, {x: 0.164348925, y: null}, {x: 0.040358744, y: null}, {x: 0.445730825, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050359712, y: 1.80788}, {x: 0.066358025, y: null}, {x: 0.057142857, y: null}, {x: 0.246930423, y: null}, {x: 0.053128689, y: null}, {x: 0.127055306, y: null}, {x: 0.077281812, y: null}, {x: 0.12568306, y: null}, {x: 0.054994388, y: null}, {x: 0.325423729, y: null}, {x: 0.092857143, y: null}, {x: 0.0, y: null}, {x: 0.261203585, y: null}, {x: 0.166549047, y: null}, {x: 0.114084507, y: null}, {x: 0.095015576, y: 1.335464}, {x: 0.209486166, y: null}, {x: 0.079704797, y: null}, {x: 0.130170316, y: null}, {x: 0.287390029, y: null}, {x: 0.065420561, y: null}, {x: 0.087431694, y: null}, {x: 0.009425878, y: null}, {x: 0.205692109, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.088277858, y: null}, {x: 0.029090909, y: null}, {x: 0.03567681, y: null}, {x: 0.153957529, y: null}, {x: 0.0, y: null}, {x: 0.045031056, y: null}, {x: 0.096429886, y: null}, {x: 0.149019608, y: null}, {x: 0.042151163, y: null}, {x: 0.0, y: null}, {x: 0.048780488, y: 0.072}, {x: 0.052028219, y: null}, {x: 0.024713151, y: null}, {x: 0.105195638, y: null}, {x: 0.265402844, y: null}, {x: 0.251345119, y: null}, {x: 0.017069701, y: null}, {x: 0.177110694, y: null}, {x: 0.447255742, y: null}, {x: 0.353989813, y: null}, {x: 0.492346939, y: null}, {x: 0.109599395, y: null}, {x: 0.529886914, y: null}, {x: 0.0, y: null}, {x: 0.076752768, y: null}, {x: 0.76118068, y: null}, {x: 0.907096774, y: null}, {x: 0.108994709, y: null}, {x: 0.060945274, y: null}, {x: 0.207780725, y: null}, {x: 0.055555556, y: null}, {x: 0.070107858, y: null}, {x: 0.202298851, y: null}, {x: 0.164718385, y: null}, {x: 0.204397394, y: null}, {x: 0.100269179, y: null}, {x: 0.070422535, y: null}, {x: 0.155378486, y: null}, {x: 0.105080831, y: null}, {x: 0.424657534, y: null}, {x: 0.166969147, y: null}, {x: 0.614195764, y: null}, {x: 0.174245644, y: null}, {x: 0.494323144, y: null}, {x: 0.272815534, y: null}, {x: 0.063165906, y: null}, {x: 0.35480916, y: null}, {x: 0.35375086, y: null}, {x: 0.436554133, y: null}, {x: 0.555452865, y: null}, {x: 0.297352342, y: null}, {x: 0.304854369, y: null}, {x: 0.483031674, y: null}, {x: 0.739099357, y: null}, {x: 0.706566916, y: null}, {x: 0.530754597, y: null}, {x: 0.511075949, y: null}, {x: 0.287601626, y: null}, {x: 0.528176796, y: null}, {x: 0.162995595, y: null}, {x: 0.288888889, y: null}, {x: 0.27589545, y: null}, {x: 0.286082474, y: null}, {x: 0.092459016, y: null}, {x: 0.410671257, y: null}, {x: 0.784060552, y: null}, {x: 0.775528979, y: null}, {x: 0.462857143, y: null}, {x: 0.388213283, y: null}, {x: 0.155482815, y: null}, {x: 0.378787879, y: null}, {x: 0.267548322, y: null}, {x: 0.880447585, y: null}, {x: 0.509410289, y: null}, {x: 0.466165414, y: 32.512411}, {x: 0.575409836, y: null}, {x: 0.66496945, y: null}, {x: 0.800465387, y: null}, {x: 0.730895645, y: null}, {x: 0.539273154, y: null}, {x: 0.554922701, y: null}, {x: 0.788423154, y: null}, {x: 0.816571131, y: null}, {x: 0.816338028, y: null}, {x: 0.857978279, y: null}, {x: 0.901328273, y: null}, {x: 0.891085791, y: null}, {x: 0.729947602, y: null}, {x: 0.70969993, y: null}, {x: 0.792498005, y: null}, {x: 0.866344606, y: null}, {x: 0.39581517, y: null}, {x: 0.897160883, y: null}, {x: 0.446332737, y: null}, {x: 0.700680272, y: null}, {x: 0.715441672, y: null}, {x: 0.386773547, y: null}, {x: 0.845647773, y: null}, {x: 0.76681128, y: null}, {x: 0.459394905, y: null}, {x: 0.346446701, y: null}, {x: 0.500794913, y: null}, {x: 0.79403489, y: null}, {x: 0.763414634, y: null}, {x: 0.275307474, y: null}, {x: 0.583333333, y: null}, {x: 0.374887082, y: null}, {x: 0.868758916, y: null}, {x: 0.770931326, y: null}, {x: 0.411007026, y: null}, {x: 0.500808625, y: null}, {x: 0.519764508, y: 144.338492}, {x: 0.892459827, y: null}, {x: 0.744423792, y: null}, {x: 0.919898284, y: null}, {x: 0.877671334, y: null}, {x: 0.885714286, y: null}, {x: 0.810117302, y: null}, {x: 0.662431942, y: null}, {x: 0.884689302, y: null}, {x: 0.164921466, y: null}, {x: 0.368703108, y: null}, {x: 0.117740652, y: null}, {x: 0.17421875, y: null}, {x: 0.148337596, y: null}, {x: 0.29445823, y: null}, {x: 0.19520548, y: null}, {x: 0.336518047, y: null}, {x: 0.112641815, y: null}, {x: 0.0, y: null}, {x: 0.089770355, y: null}, {x: 0.124255952, y: null}, {x: 0.229804315, y: null}, {x: 0.111111111, y: null}, {x: 0.087553648, y: null}, {x: 0.171250649, y: null}, {x: 0.179650915, y: null}, {x: 0.123737374, y: null}, {x: 0.097915657, y: null}, {x: 0.309719934, y: null}, {x: 0.334868421, y: null}, {x: 0.107121836, y: null}, {x: 0.448412698, y: null}, {x: 0.154831199, y: null}, {x: 0.11942446, y: null}, {x: 0.070607553, y: null}, {x: 0.069484241, y: null}, {x: 0.128732581, y: null}, {x: 0.05971223, y: null}, {x: 0.117810118, y: null}, {x: 0.031338028, y: null}, {x: 0.083333333, y: null}, {x: 0.060202451, y: null}, {x: 0.119221411, y: null}, {x: 0.078912467, y: null}, {x: 0.028119508, y: null}, {x: 0.046100819, y: null}, {x: 0.080040188, y: null}, {x: 0.002484472, y: null}, {x: 0.178756477, y: null}, {x: 0.064392119, y: null}, {x: 0.0, y: null}, {x: 0.188484519, y: null}, {x: 0.343164794, y: null}, {x: 0.498570067, y: null}, {x: 0.121147391, y: null}, {x: 0.022821577, y: null}, {x: 0.0, y: null}, {x: 0.240073869, y: null}, {x: 0.158736505, y: null}, {x: 0.032423208, y: null}, {x: 0.167942584, y: null}, {x: 0.240983607, y: null}, {x: 0.450167973, y: null}, {x: 0.603729604, y: null}, {x: 0.61519806, y: null}, {x: 0.520325203, y: null}, {x: 0.39229249, y: null}, {x: 0.160136286, y: null}, {x: 0.674418605, y: null}, {x: 0.4625, y: null}, {x: 0.172566372, y: null}, {x: 0.024505929, y: null}, {x: 0.215869312, y: null}, {x: 0.043548387, y: null}, {x: 0.066592675, y: null}, {x: 0.188972667, y: null}, {x: 0.088761632, y: null}, {x: 0.054274084, y: null}, {x: 0.128458498, y: null}, {x: 0.257826888, y: null}, {x: 0.025641026, y: null}, {x: 0.20610687, y: null}, {x: 0.043855642, y: null}, {x: 0.0, y: null}, {x: 0.259084474, y: null}, {x: 0.064085447, y: null}, {x: 0.231536926, y: null}, {x: 0.059910771, y: null}, {x: 0.296178344, y: null}, {x: 0.123842028, y: null}, {x: 0.005, y: null}, {x: 0.039193084, y: null}, {x: 0.346133333, y: null}, {x: 0.032371569, y: null}, {x: 0.027896164, y: null}, {x: 0.06244087, y: null}, {x: 0.093683084, y: null}, {x: 0.045801527, y: null}, {x: 0.100452489, y: null}, {x: 0.054640719, y: null}, {x: 0.036539269, y: null}, {x: 0.048086867, y: null}, {x: 0.118127382, y: null}, {x: 0.125984252, y: null}, {x: 0.07565337, y: null}, {x: 0.0446593, y: null}, {x: 0.065279092, y: null}, {x: 0.0890625, y: null}, {x: 0.410596027, y: null}, {x: 0.0, y: null}, {x: 0.073899371, y: null}, {x: 0.043646945, y: null}, {x: 0.158458244, y: null}, {x: 0.020166074, y: null}, {x: 0.048794827, y: null}, {x: 0.176685621, y: null}, {x: 0.054528212, y: null}, {x: 0.189847297, y: null}, {x: 0.273056058, y: null}, {x: 0.039981404, y: null}, {x: 0.090689238, y: null}, {x: 0.079083969, y: null}, {x: 0.101827676, y: null}, {x: 0.043093923, y: null}, {x: 0.11942446, y: null}, {x: 0.052166225, y: null}, {x: 0.401840491, y: null}, {x: 0.284057971, y: null}, {x: 0.322128852, y: null}, {x: 0.084566596, y: null}, {x: 0.314262691, y: null}, {x: 0.082706767, y: null}, {x: 0.179908676, y: null}, {x: 0.230769231, y: null}, {x: 0.434077079, y: null}, {x: 0.4192673, y: null}, {x: 0.049511855, y: null}, {x: 0.023255814, y: null}, {x: 0.019674936, y: null}, {x: 0.251763047, y: null}, {x: 0.177434908, y: null}, {x: 0.080993521, y: null}, {x: 0.097095436, y: null}, {x: 0.088639837, y: null}, {x: 0.012965964, y: null}, {x: 0.033877039, y: null}, {x: 0.132625272, y: null}, {x: 0.020084567, y: null}, {x: 0.026315789, y: null}, {x: 0.014937107, y: null}, {x: 0.178063943, y: null}, {x: 0.004398827, y: null}, {x: 0.04007286, y: null}, {x: 0.035555556, y: null}, {x: 0.058421851, y: null}, {x: 0.094894027, y: null}, {x: 0.011702128, y: null}, {x: 0.032258065, y: null}, {x: 0.0, y: null}, {x: 0.038085938, y: null}, {x: 0.032821599, y: null}, {x: 0.06330366, y: 0.89}, {x: 0.026004728, y: null}, {x: 0.216653193, y: null}, {x: 0.322722283, y: null}, {x: 0.037533512, y: 0.18}, {x: 0.078947368, y: null}, {x: 0.019346231, y: 0.276}, {x: 0.377939984, y: null}, {x: 0.204854369, y: null}, {x: 0.222056632, y: null}, {x: 0.114333057, y: null}, {x: 0.124388919, y: null}, {x: 0.015384615, y: null}, {x: 0.052567237, y: null}, {x: 0.007778738, y: null}, {x: 0.021171489, y: null}, {x: 0.006698565, y: null}, {x: 0.204685573, y: null}, {x: 0.040298507, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022016222, y: null}, {x: 0.019549763, y: null}, {x: 0.185412027, y: null}, {x: 0.044612795, y: null}, {x: 0.024324324, y: null}, {x: 0.172839506, y: null}, {x: 0.085768742, y: null}, {x: 0.151589242, y: null}, {x: 0.132075472, y: null}, {x: 0.025228127, y: null}, {x: 0.020833333, y: null}, {x: 0.908791209, y: 176.54059600000002}, {x: 0.815769522, y: null}, {x: 0.888643068, y: null}, {x: 0.973780044, y: null}, {x: 0.825046729, y: null}, {x: 0.978891821, y: null}, {x: 0.931164902, y: null}, {x: 0.982928091, y: null}, {x: 0.978562421, y: null}, {x: 0.888653234, y: null}, {x: 0.949283352, y: null}, {x: 0.97324941, y: null}, {x: 0.916176471, y: null}, {x: 0.932621748, y: null}, {x: 0.873153779, y: null}, {x: 0.951820129, y: null}, {x: 0.779874214, y: null}, {x: 0.948481353, y: null}, {x: 0.899947062, y: null}, {x: 0.932416953, y: null}, {x: 0.909038239, y: null}, {x: 0.890177881, y: null}, {x: 0.704281447, y: null}, {x: 0.873128448, y: null}, {x: 0.958499601, y: null}, {x: 0.99327505, y: null}, {x: 0.986601705, y: 6.126247}, {x: 0.963092269, y: null}, {x: 0.650491803, y: null}, {x: 0.918296893, y: null}, {x: 0.949438202, y: null}, {x: 0.971014493, y: null}, {x: 0.977946768, y: null}, {x: 0.894854586, y: null}, {x: 0.874005305, y: null}, {x: 0.947829014, y: null}, {x: 0.8113612, y: null}, {x: 0.870611836, y: null}, {x: 0.82230997, y: null}, {x: 0.785929648, y: null}, {x: 0.934655776, y: null}, {x: 0.918844567, y: null}, {x: 0.856401384, y: null}, {x: 0.925694838, y: null}, {x: 0.711111111, y: 38.4927}, {x: 0.88619403, y: null}, {x: 0.938500961, y: null}, {x: 1.0, y: null}, {x: 0.527292576, y: null}, {x: 1.0, y: null}, {x: 0.906885246, y: null}, {x: 0.838541667, y: null}, {x: 0.54951857, y: null}, {x: 0.800322061, y: null}, {x: 0.729971182, y: null}, {x: 0.454146074, y: null}, {x: 0.299352751, y: null}, {x: 0.650655022, y: null}, {x: 0.476335878, y: null}, {x: 0.189303905, y: null}, {x: 0.430843374, y: null}, {x: 0.260190217, y: null}, {x: 0.33526971, y: null}, {x: 0.399484536, y: null}, {x: 0.300775901, y: null}, {x: 0.159453303, y: null}, {x: 0.379435192, y: null}, {x: 0.881287726, y: null}, {x: 0.702885206, y: null}, {x: 0.566176471, y: null}, {x: 0.754769921, y: null}, {x: 0.252701579, y: null}, {x: 0.614740369, y: null}, {x: 0.687757909, y: null}, {x: 0.474349442, y: null}, {x: 0.581576027, y: null}, {x: 0.173955296, y: null}, {x: 0.72702884, y: null}, {x: 0.395575221, y: null}, {x: 0.251528384, y: null}, {x: 0.346712212, y: null}, {x: 0.499198718, y: null}, {x: 0.491246874, y: null}, {x: 0.041331803, y: null}, {x: 0.480324544, y: null}, {x: 0.211472603, y: null}, {x: 0.320621469, y: null}, {x: 0.184400826, y: null}, {x: 0.296616837, y: null}, {x: 0.576530612, y: null}, {x: 0.146976744, y: null}, {x: 0.191133721, y: null}, {x: 0.160945843, y: null}, {x: 0.122765197, y: null}, {x: 0.181467182, y: null}, {x: 0.318761384, y: null}, {x: 0.02997076, y: 57.7297}, {x: 0.08986731, y: null}, {x: 0.198795181, y: null}, {x: 0.036603221, y: null}, {x: 0.340713407, y: null}, {x: 0.35462963, y: null}, {x: 0.359520124, y: null}, {x: 0.181467182, y: null}, {x: 0.159113797, y: null}, {x: 0.122165326, y: null}, {x: 0.222608696, y: null}, {x: 0.450557621, y: null}, {x: 0.131989001, y: null}, {x: 0.294383149, y: null}, {x: 0.086277427, y: null}, {x: 0.029985008, y: null}, {x: 0.375826251, y: null}, {x: 0.062740077, y: null}, {x: 0.149467839, y: null}, {x: 0.116963064, y: null}, {x: 0.156133829, y: null}, {x: 0.247181965, y: null}, {x: 0.248914617, y: null}, {x: 0.078393881, y: null}, {x: 0.175405743, y: null}, {x: 0.141150443, y: null}, {x: 0.24463305, y: null}, {x: 0.371785714, y: null}, {x: 0.285863874, y: null}, {x: 0.370653096, y: null}, {x: 0.444073456, y: null}, {x: 0.331352155, y: null}, {x: 0.44708589, y: null}, {x: 0.277604708, y: null}, {x: 0.424954792, y: null}, {x: 0.748896518, y: null}, {x: 0.182566405, y: null}, {x: 0.327433628, y: null}, {x: 0.843330349, y: null}, {x: 0.51390059, y: 26.852272}, {x: 0.552982456, y: 17.432869}, {x: 0.21563981, y: null}, {x: 0.355847405, y: null}, {x: 0.462015504, y: 2.114101}, {x: 0.167921251, y: null}, {x: 0.175528507, y: 27.576203}, {x: 0.147877013, y: null}, {x: 0.237837838, y: null}, {x: 0.137959521, y: null}, {x: 0.479514416, y: null}, {x: 0.033795494, y: null}, {x: 0.253697383, y: null}, {x: 0.25728863, y: null}, {x: 0.220485627, y: null}, {x: 0.32371134, y: null}, {x: 0.620629371, y: null}, {x: 0.0805718, y: null}, {x: 0.130406714, y: null}, {x: 0.520257827, y: null}, {x: 0.245901639, y: null}, {x: 0.378537736, y: null}, {x: 0.301431801, y: null}, {x: 0.752407932, y: null}, {x: 0.41682243, y: 9.574524}, {x: 0.205658784, y: null}, {x: 0.549011178, y: null}, {x: 0.687575758, y: 17.33541}, {x: 0.405609493, y: null}, {x: 0.274444444, y: null}, {x: 0.44909688, y: null}, {x: 0.300794022, y: null}, {x: 0.442523768, y: null}, {x: 0.184029944, y: 19.605847}, {x: 0.272787758, y: null}, {x: 0.0997426, y: 0.363247}, {x: 0.042322835, y: null}, {x: 0.100963391, y: 51.7282}, {x: 0.285768937, y: null}, {x: 0.245523091, y: null}, {x: 0.06146789, y: null}, {x: 0.112774769, y: null}, {x: 0.016859852, y: null}, {x: 0.049342105, y: null}, {x: 0.049539986, y: null}, {x: 0.118327402, y: null}, {x: 0.180845644, y: null}, {x: 0.05481345, y: null}, {x: 0.142180095, y: null}, {x: 0.014583333, y: null}, {x: 0.029831388, y: null}, {x: 0.094653812, y: null}, {x: 0.041020966, y: null}, {x: 0.060908084, y: null}, {x: 0.034170854, y: null}, {x: 0.067763158, y: null}, {x: 0.056047198, y: null}, {x: 0.02507837, y: null}, {x: 0.017660044, y: null}, {x: 0.234642498, y: null}, {x: 0.122203098, y: null}, {x: 0.080864692, y: null}, {x: 0.037037037, y: null}, {x: 0.069269039, y: null}, {x: 0.134584013, y: null}, {x: 0.1411161, y: null}, {x: 0.075289575, y: null}, {x: 0.042492918, y: null}, {x: 0.233123312, y: null}, {x: 0.166944908, y: null}, {x: 0.012972973, y: null}, {x: 0.192660551, y: null}, {x: 0.164259928, y: null}, {x: 0.098230628, y: null}, {x: 0.222077922, y: null}, {x: 0.038383838, y: null}, {x: 0.03864279, y: null}, {x: 0.157419937, y: null}, {x: 0.061688312, y: null}, {x: 0.164593301, y: null}, {x: 0.024082569, y: null}, {x: 0.026863085, y: null}, {x: 0.062639821, y: null}, {x: 0.0, y: null}, {x: 0.026380874, y: null}, {x: 0.176232821, y: null}, {x: 0.025062657, y: null}, {x: 0.035267349, y: null}, {x: 0.0, y: null}, {x: 0.091079812, y: null}, {x: 0.086046512, y: null}, {x: 0.070696721, y: null}, {x: 0.082269504, y: null}, {x: 0.071078431, y: null}, {x: 0.04427334, y: null}, {x: 0.014728682, y: null}, {x: 0.092031425, y: null}, {x: 0.029946164, y: null}, {x: 0.042050691, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.096975089, y: null}, {x: 0.08185654, y: null}, {x: 0.046116505, y: null}, {x: 0.105202312, y: null}, {x: 0.041593439, y: null}, {x: 0.037073171, y: null}, {x: 0.073185012, y: null}, {x: 0.081282625, y: null}, {x: 0.120667523, y: null}, {x: 0.047932331, y: null}, {x: 0.097491039, y: null}, {x: 0.167030568, y: null}, {x: 0.071713147, y: null}, {x: 0.084074373, y: null}, {x: 0.115323855, y: null}, {x: 0.122874807, y: null}, {x: 0.0, y: null}, {x: 0.050304878, y: null}, {x: 0.085855032, y: null}, {x: 0.080824972, y: null}, {x: 0.131991052, y: null}, {x: 0.212686567, y: null}, {x: 0.081717452, y: 0.751364}, {x: 0.226337449, y: null}, {x: 0.134129214, y: null}, {x: 0.035294118, y: null}, {x: 0.005688282, y: null}, {x: 0.145128205, y: 0.6538919999999999}, {x: 0.03526971, y: null}, {x: 0.029548989, y: null}, {x: 0.062048193, y: null}, {x: 0.192, y: null}, {x: 0.232647815, y: null}, {x: 0.155767818, y: null}, {x: 0.116144019, y: null}, {x: 0.065994962, y: null}, {x: 0.097826087, y: null}, {x: 0.125, y: null}, {x: 0.127516779, y: null}, {x: 0.2258314, y: null}, {x: 0.068089431, y: null}, {x: 0.113226453, y: null}, {x: 0.021949078, y: null}, {x: 0.111716621, y: null}, {x: 0.074856046, y: null}, {x: 0.203816794, y: null}, {x: 0.02247191, y: null}, {x: 0.106024096, y: null}, {x: 0.036053131, y: null}, {x: 0.145408163, y: null}, {x: 0.095465394, y: null}, {x: 0.327979713, y: null}, {x: 0.066790353, y: null}, {x: 0.407171315, y: null}, {x: 0.078947368, y: null}, {x: 0.090389016, y: null}, {x: 0.089712919, y: null}, {x: 0.029233315, y: null}, {x: 0.078692494, y: null}, {x: 0.139742319, y: null}, {x: 0.09310987, y: null}, {x: 0.132786885, y: null}, {x: 0.666068223, y: null}, {x: 0.859778598, y: null}, {x: 0.468637347, y: null}, {x: 0.737354988, y: null}, {x: 0.713888889, y: 19.621000000000002}, {x: 0.574813812, y: null}, {x: 0.830940989, y: null}, {x: 0.622109827, y: null}, {x: 0.939347991, y: null}, {x: 0.603592814, y: null}, {x: 0.532026144, y: null}, {x: 0.579908676, y: null}, {x: 0.741660752, y: null}, {x: 0.709973046, y: null}, {x: 0.839224629, y: null}, {x: 0.364485981, y: null}, {x: 0.549155146, y: null}, {x: 0.665835412, y: null}, {x: 0.635145784, y: null}, {x: 0.794098361, y: null}, {x: 0.878336756, y: null}, {x: 0.796190476, y: null}, {x: 0.902504472, y: null}, {x: 0.607602339, y: null}, {x: 0.905444126, y: null}, {x: 0.996319018, y: null}, {x: 0.94701087, y: null}, {x: 0.993730408, y: null}, {x: 0.978021978, y: 37.631}, {x: 0.912572856, y: null}, {x: 0.988183161, y: null}, {x: 0.960207613, y: null}, {x: 0.88988764, y: null}, {x: 0.909340659, y: null}, {x: 0.816209317, y: 739.527068}, {x: 0.75273224, y: null}, {x: 0.977695167, y: null}, {x: 0.929032258, y: null}, {x: 0.874678112, y: null}, {x: 0.812627291, y: null}, {x: 0.989616613, y: null}, {x: 0.943625325, y: null}, {x: 0.841968912, y: null}, {x: 0.758928571, y: null}, {x: 1.0, y: null}, {x: 0.85170068, y: null}, {x: 0.818696884, y: null}, {x: 0.755304102, y: null}, {x: 0.54144385, y: null}, {x: 0.928794992, y: null}, {x: 0.828541001, y: null}, {x: 0.905699482, y: null}, {x: 0.890428212, y: null}, {x: 0.699331849, y: null}, {x: 0.907456724, y: null}, {x: 0.721938776, y: null}, {x: 0.719759926, y: null}, {x: 0.576826197, y: null}, {x: 0.412039197, y: null}, {x: 0.409162717, y: null}, {x: 0.401221996, y: null}, {x: 0.719214753, y: null}, {x: 0.615582506, y: null}, {x: 0.506289308, y: null}, {x: 0.457305503, y: null}, {x: 0.691776089, y: null}, {x: 0.348007414, y: null}, {x: 0.322754895, y: null}, {x: 0.293984962, y: null}, {x: 0.771888726, y: null}, {x: 0.374476987, y: null}, {x: 0.271912351, y: null}, {x: 0.98022356, y: null}, {x: 0.794626866, y: null}, {x: 0.994732221, y: null}, {x: 0.964611872, y: null}, {x: 0.183394161, y: null}, {x: 0.641163793, y: null}, {x: 0.927821522, y: null}, {x: 0.937165775, y: null}, {x: 0.558227848, y: null}, {x: 1.0, y: null}, {x: 0.911976912, y: null}, {x: 0.862837046, y: 27.040660999999997}, {x: 0.966568338, y: 81.680767}, {x: 0.844005778, y: null}, {x: 0.81284153, y: null}, {x: 0.77037037, y: null}, {x: 1.0, y: 198.331469}, {x: 0.811864407, y: null}, {x: 1.0, y: null}, {x: 0.754397835, y: null}, {x: 0.675422139, y: null}, {x: 0.376344086, y: null}, {x: 0.091891892, y: null}, {x: 0.476510067, y: null}, {x: 0.520172911, y: null}, {x: 0.919381108, y: 7.279}, {x: 0.766588603, y: null}, {x: 0.74893617, y: null}, {x: 0.685099846, y: null}, {x: 0.873223422, y: null}, {x: 0.806111697, y: null}, {x: 0.912801484, y: null}, {x: 0.916903409, y: null}, {x: 0.141498216, y: null}, {x: 0.211065574, y: null}, {x: 0.424207493, y: null}, {x: 0.262195122, y: null}, {x: 0.39589169, y: null}, {x: 0.182926829, y: null}, {x: 0.477832512, y: null}, {x: 0.656934307, y: null}, {x: 0.615486433, y: null}, {x: 0.577946768, y: null}, {x: 0.231316726, y: null}, {x: 0.751758087, y: null}, {x: 0.670623145, y: null}, {x: 0.827805222, y: null}, {x: 0.783199506, y: null}, {x: 0.615036232, y: null}, {x: 0.266241299, y: null}, {x: 0.175464143, y: null}, {x: 0.0, y: null}, {x: 0.251574657, y: null}, {x: 0.23653088, y: null}, {x: 0.129602356, y: null}, {x: 0.133093525, y: null}, {x: 0.0, y: null}, {x: 0.055594163, y: null}, {x: 0.27632951, y: null}, {x: 0.358490566, y: null}, {x: 0.196682465, y: null}, {x: 0.101513802, y: null}, {x: 0.087949743, y: null}, {x: 0.179837676, y: null}, {x: 0.065782764, y: null}, {x: 0.133580705, y: null}, {x: 0.346660995, y: null}, {x: 0.079715864, y: null}, {x: 0.052268506, y: null}, {x: 0.0, y: null}, {x: 0.176470588, y: null}, {x: 0.524048096, y: null}, {x: 0.030247141, y: null}, {x: 0.466400911, y: 1.005625}, {x: 0.274074074, y: null}, {x: 0.421518055, y: null}, {x: 0.32, y: null}, {x: 0.437592868, y: null}, {x: 0.430389817, y: 21.590654999999998}, {x: 0.580169972, y: 2.36377}, {x: 0.240875912, y: null}, {x: 0.569482289, y: 69.454067}, {x: 0.652968037, y: null}, {x: 0.121621622, y: null}, {x: 0.558648111, y: null}, {x: 0.45490982, y: null}, {x: 0.429160935, y: null}, {x: 0.18018018, y: null}, {x: 0.053133515, y: null}, {x: 0.100247525, y: null}, {x: 0.305327869, y: 4.023005}, {x: 0.215180545, y: null}, {x: 0.604985618, y: 15.273601}, {x: 0.548532731, y: null}, {x: 0.165534805, y: null}, {x: 0.631853786, y: null}, {x: 0.360091743, y: null}, {x: 0.505222437, y: 17.667698}, {x: 0.251160392, y: 130.09780700000002}, {x: 0.61027668, y: null}, {x: 0.0, y: null}, {x: 0.078554595, y: null}, {x: 0.523061825, y: null}, {x: 0.014662757, y: null}, {x: 0.297581493, y: null}, {x: 0.048259494, y: null}, {x: 0.184351145, y: 98.279335}, {x: 0.382911392, y: 0.465397}, {x: 0.0, y: null}, {x: 0.22, y: null}, {x: 0.397677794, y: null}, {x: 0.105067064, y: null}, {x: 0.113049096, y: null}, {x: 0.959605027, y: null}, {x: 0.963369963, y: null}, {x: 0.969387755, y: null}, {x: 0.956435644, y: null}, {x: 0.960204082, y: null}, {x: 0.926729986, y: 1.850684}, {x: 0.811279827, y: null}, {x: 0.975415282, y: null}, {x: 0.856299213, y: 211.675397}, {x: 0.858793325, y: null}, {x: 0.932656827, y: null}, {x: 0.558935361, y: null}, {x: 0.532241556, y: null}, {x: 0.386792453, y: null}, {x: 0.484396201, y: null}, {x: 0.257377049, y: 106.444359}, {x: 0.344457688, y: 2.454447}, {x: 0.279470199, y: null}, {x: 0.896103896, y: null}, {x: 0.791120081, y: null}, {x: 0.68814433, y: null}, {x: 0.13943662, y: null}, {x: 0.584837545, y: null}, {x: 0.152477764, y: null}, {x: 0.688147296, y: null}, {x: 0.219414894, y: null}, {x: 0.175746092, y: null}, {x: 0.107717042, y: null}, {x: 0.351125065, y: null}, {x: 0.371471025, y: 617.717181}, {x: 0.560286104, y: 0.620762}, {x: 0.644736842, y: null}, {x: 0.493927126, y: null}, {x: 0.55771725, y: null}, {x: 0.272727273, y: null}, {x: 0.446285714, y: null}, {x: 0.255829904, y: null}, {x: 0.125845738, y: null}, {x: 0.289340102, y: null}, {x: 0.186282811, y: null}, {x: 0.331491713, y: null}, {x: 0.479510378, y: null}, {x: 0.100867679, y: null}, {x: 0.208393632, y: null}, {x: 0.731759657, y: null}, {x: 0.083188908, y: null}, {x: 0.716853933, y: null}, {x: 0.296137339, y: null}, {x: 0.068448501, y: null}, {x: 0.065536723, y: null}, {x: 0.039503386, y: null}, {x: 0.144208038, y: null}, {x: 0.583662714, y: null}, {x: 0.122153209, y: null}, {x: 0.083102493, y: null}, {x: 0.225667939, y: null}, {x: 0.193456615, y: null}, {x: 0.026851098, y: null}, {x: 0.109311741, y: null}, {x: 0.57129923, y: null}, {x: 0.0, y: null}, {x: 0.153926338, y: null}, {x: 0.170827858, y: null}, {x: 0.134932534, y: null}, {x: 0.032445923, y: null}, {x: 0.160023795, y: null}, {x: 0.088263822, y: null}, {x: 0.326013514, y: null}, {x: 0.139669422, y: null}, {x: 0.224238876, y: null}, {x: 0.420615129, y: null}, {x: 0.389183457, y: null}, {x: 0.225772098, y: null}, {x: 0.12687813, y: null}, {x: 0.128164557, y: null}, {x: 0.072142064, y: null}, {x: 0.091920375, y: null}, {x: 0.071469411, y: null}, {x: 0.073937153, y: null}, {x: 0.073094868, y: null}, {x: 0.221294363, y: null}, {x: 0.104707435, y: null}, {x: 0.164637374, y: null}, {x: 0.135341212, y: null}, {x: 0.013571429, y: null}, {x: 0.046906866, y: null}, {x: 0.11247216, y: null}, {x: 0.126353791, y: null}, {x: 0.091073583, y: null}, {x: 0.067447046, y: null}, {x: 0.047466325, y: null}, {x: 0.102736653, y: null}, {x: 0.046249295, y: null}, {x: 0.127516779, y: null}, {x: 0.055292259, y: null}, {x: 0.092124814, y: null}, {x: 0.070581897, y: null}, {x: 0.218259629, y: null}, {x: 0.041054232, y: null}, {x: 0.083183453, y: null}, {x: 0.049350649, y: null}, {x: 0.170998632, y: null}, {x: 0.126258714, y: null}, {x: 0.04781491, y: null}, {x: 0.156842105, y: null}, {x: 0.28345679, y: null}, {x: 0.09062694, y: null}, {x: 0.150380339, y: null}, {x: 0.223846154, y: 385.927118}, {x: 0.086538462, y: 2.816}, {x: 0.084101807, y: null}, {x: 0.233801541, y: null}, {x: 0.001374256, y: null}, {x: 0.205357143, y: null}, {x: 0.16375345, y: null}, {x: 0.09386121, y: null}, {x: 0.213498015, y: null}, {x: 0.066517608, y: null}, {x: 0.13476874, y: null}, {x: 0.31184669, y: null}, {x: 0.0, y: null}, {x: 0.199457259, y: null}, {x: 0.153046764, y: null}, {x: 0.085403727, y: null}, {x: 0.145624103, y: null}, {x: 0.272268908, y: null}, {x: 0.016836509, y: null}, {x: 0.172516065, y: null}, {x: 0.192686357, y: null}, {x: 0.082211198, y: null}, {x: 0.0, y: null}, {x: 0.1056231, y: null}, {x: 0.189381933, y: null}, {x: 0.0, y: null}, {x: 0.073916409, y: null}, {x: 0.163109756, y: null}, {x: 0.063419118, y: null}, {x: 0.138977636, y: null}, {x: 0.272121789, y: null}, {x: 0.107692308, y: null}, {x: 0.101687389, y: null}, {x: 0.025847214, y: null}, {x: 0.025522042, y: null}, {x: 0.087609512, y: null}, {x: 0.102793296, y: null}, {x: 0.025792189, y: null}, {x: 0.065130261, y: null}, {x: 0.104951959, y: null}, {x: 0.048465267, y: null}, {x: 0.27791361, y: null}, {x: 0.006405124, y: null}, {x: 0.057109557, y: null}, {x: 0.066704036, y: null}, {x: 0.034074074, y: null}, {x: 0.082294264, y: null}, {x: 0.043219076, y: null}, {x: 0.00128866, y: null}, {x: 0.285781991, y: null}, {x: 0.083300589, y: null}, {x: 0.110504097, y: null}, {x: 0.13984375, y: null}, {x: 0.100474684, y: null}, {x: 0.0, y: null}, {x: 0.137073171, y: null}, {x: 0.082846522, y: null}, {x: 0.229588705, y: null}, {x: 0.00693909, y: null}, {x: 0.272848863, y: null}, {x: 0.564356436, y: null}, {x: 0.278772379, y: null}, {x: 0.213219616, y: null}, {x: 0.395305164, y: null}, {x: 0.379338295, y: null}, {x: 0.271004422, y: null}, {x: 0.035409035, y: null}, {x: 0.455334988, y: null}, {x: 0.079084967, y: null}, {x: 0.205537806, y: null}, {x: 0.361185984, y: null}, {x: 0.196330275, y: null}, {x: 0.405008166, y: null}, {x: 0.353893601, y: null}, {x: 0.467845659, y: null}, {x: 0.078101072, y: null}, {x: 0.10318792, y: null}, {x: 0.229373903, y: null}, {x: 0.499171728, y: null}, {x: 0.706864564, y: null}, {x: 0.395192308, y: null}, {x: 0.027865405, y: null}, {x: 0.021367521, y: null}, {x: 0.097174658, y: null}, {x: 0.082474227, y: null}, {x: 0.102493075, y: null}, {x: 0.081267218, y: null}, {x: 0.136107499, y: null}, {x: 0.113018598, y: null}, {x: 0.150882825, y: null}, {x: 0.066853343, y: null}, {x: 0.084639498, y: null}, {x: 0.435692034, y: null}, {x: 0.118721461, y: null}, {x: 0.186781609, y: null}, {x: 0.073194857, y: null}, {x: 0.070599613, y: null}, {x: 0.049403748, y: null}, {x: 0.016205267, y: 0.45}, {x: 0.220447284, y: null}, {x: 0.127737226, y: null}, {x: 0.185520362, y: null}, {x: 0.068365444, y: null}, {x: 0.103202847, y: null}, {x: 0.275950999, y: null}, {x: 0.148340249, y: null}, {x: 0.268025078, y: null}, {x: 0.090728477, y: null}, {x: 0.043799472, y: null}, {x: 0.111570248, y: null}, {x: 0.359516616, y: null}, {x: 0.166361974, y: null}, {x: 0.113030417, y: null}, {x: 0.202947846, y: null}, {x: 0.34056055, y: null}, {x: 0.6, y: null}, {x: 0.226250907, y: null}, {x: 0.103977669, y: null}, {x: 0.104134763, y: null}, {x: 0.134596211, y: null}, {x: 0.34949495, y: null}, {x: 0.097604259, y: null}, {x: 0.099537037, y: null}, {x: 0.14321075, y: null}, {x: 0.014985015, y: 5e-05}, {x: 0.18328841, y: null}, {x: 0.0, y: null}, {x: 0.020985401, y: null}, {x: 0.082198215, y: null}, {x: 0.086255259, y: null}, {x: 0.007885305, y: null}, {x: 0.262195122, y: null}, {x: 0.176043557, y: null}, {x: 0.34184514, y: null}, {x: 0.047169811, y: null}, {x: 0.17136958, y: null}, {x: 0.124248497, y: null}, {x: 0.18833652, y: null}, {x: 0.119771863, y: null}, {x: 0.158560959, y: null}, {x: 0.040250098, y: null}, {x: 0.051444679, y: null}, {x: 0.081424936, y: null}, {x: 0.058710913, y: null}, {x: 0.070114943, y: null}, {x: 0.000951475, y: null}, {x: 0.055979644, y: null}, {x: 0.032198712, y: null}, {x: 0.107988166, y: null}, {x: 0.042051282, y: null}, {x: 0.051079137, y: null}, {x: 0.030760626, y: null}, {x: 0.099214847, y: null}, {x: 0.185280494, y: null}, {x: 0.12631579, y: null}, {x: 0.233223322, y: null}, {x: 0.086890244, y: null}, {x: 0.044176707, y: null}, {x: 0.108650519, y: null}, {x: 0.625776398, y: null}, {x: 0.4303233, y: null}, {x: 0.243303571, y: null}, {x: 0.504125413, y: null}, {x: 0.305470191, y: null}, {x: 0.670188679, y: null}, {x: 0.4140625, y: null}, {x: 0.810711665, y: 2479.88946}, {x: 0.470477976, y: null}, {x: 0.494542974, y: null}, {x: 0.361378611, y: null}, {x: 0.735710796, y: null}, {x: 0.268716578, y: null}, {x: 0.497810219, y: null}, {x: 0.206703911, y: null}, {x: 0.580128205, y: null}, {x: 0.586387435, y: 482.90002}, {x: 0.501577287, y: null}, {x: 0.392857143, y: 67.833}, {x: 0.405897114, y: null}, {x: 0.566808511, y: null}, {x: 0.556089044, y: null}, {x: 0.290715373, y: null}, {x: 0.229755179, y: null}, {x: 0.553303608, y: null}, {x: 0.140516698, y: null}, {x: 0.163170163, y: null}, {x: 0.55213436, y: null}, {x: 0.595913734, y: null}, {x: 0.344072165, y: 55.29}, {x: 0.494425864, y: null}, {x: 0.588762215, y: null}, {x: 0.575929427, y: null}, {x: 0.790583275, y: null}, {x: 0.817023741, y: null}, {x: 0.686567164, y: null}, {x: 0.721368715, y: null}, {x: 0.77232581, y: null}, {x: 0.412192903, y: null}, {x: 0.744908896, y: null}, {x: 0.576190476, y: null}, {x: 0.658415842, y: null}, {x: 0.372239748, y: null}, {x: 0.634978992, y: null}, {x: 0.594638505, y: null}, {x: 0.296102385, y: null}, {x: 0.710313448, y: null}, {x: 0.187766714, y: null}, {x: 0.669319187, y: null}, {x: 0.605442177, y: null}, {x: 0.730275229, y: null}, {x: 0.88056872, y: null}, {x: 0.845993757, y: null}, {x: 0.794520548, y: null}, {x: 0.54845089, y: null}, {x: 0.781463928, y: null}, {x: 0.612634088, y: null}, {x: 0.704942966, y: null}, {x: 0.451371571, y: null}, {x: 0.611080022, y: null}, {x: 0.506493507, y: null}, {x: 0.500699301, y: null}, {x: 0.648580968, y: null}, {x: 0.504828797, y: null}, {x: 0.552493438, y: null}, {x: 0.548463357, y: null}, {x: 0.380503145, y: null}, {x: 0.354685647, y: null}, {x: 0.104050279, y: null}, {x: 0.23015873, y: null}, {x: 0.415037594, y: 199.24}, {x: 0.526806527, y: null}, {x: 0.150976909, y: 654.51638}, {x: 0.081784387, y: null}, {x: 0.46539961, y: null}, {x: 0.283392585, y: null}, {x: 0.394270123, y: null}, {x: 0.091129032, y: null}, {x: 0.350628294, y: null}, {x: 0.119047619, y: null}, {x: 0.093260722, y: null}, {x: 0.134637514, y: null}, {x: 0.305491991, y: null}, {x: 0.137418756, y: null}, {x: 0.259615385, y: null}, {x: 0.206148282, y: null}, {x: 0.123065308, y: null}, {x: 0.323278921, y: null}, {x: 0.371923428, y: null}, {x: 0.064330844, y: null}, {x: 0.187034277, y: null}, {x: 0.09895547, y: null}, {x: 0.214765101, y: null}, {x: 0.156366344, y: null}, {x: 0.27265745, y: null}, {x: 0.023121387, y: null}, {x: 0.147362697, y: null}, {x: 0.126470588, y: null}, {x: 0.203180212, y: null}, {x: 0.298004988, y: null}, {x: 0.088690937, y: null}, {x: 0.123136389, y: null}, {x: 0.083667622, y: null}, {x: 0.157660739, y: null}, {x: 0.091808346, y: null}, {x: 0.174882126, y: null}, {x: 0.100961539, y: null}, {x: 0.090986395, y: null}, {x: 0.051638976, y: null}, {x: 0.075698925, y: null}, {x: 0.173723537, y: null}, {x: 0.101067616, y: null}, {x: 0.055643045, y: null}, {x: 0.134114583, y: null}, {x: 0.016129032, y: null}, {x: 0.475961539, y: null}, {x: 0.106666667, y: null}, {x: 0.013297872, y: null}, {x: 0.07421875, y: null}, {x: 0.055252918, y: null}, {x: 0.006044325, y: null}, {x: 0.141449683, y: null}, {x: 0.115492958, y: null}, {x: 0.029772329, y: null}, {x: 0.116802484, y: null}, {x: 0.044742729, y: null}, {x: 0.142139268, y: null}, {x: 0.093934911, y: null}, {x: 0.103255814, y: null}, {x: 0.090754877, y: null}, {x: 0.401069519, y: null}, {x: 0.169734151, y: null}, {x: 0.260122699, y: null}, {x: 0.535494327, y: null}, {x: 0.316568047, y: null}, {x: 0.018060201, y: null}, {x: 0.222490931, y: null}, {x: 0.295432459, y: null}, {x: 0.27752809, y: null}, {x: 0.224576271, y: null}, {x: 0.305376344, y: null}, {x: 0.011989101, y: null}, {x: 0.131648936, y: null}, {x: 0.552836485, y: null}, {x: 0.220881427, y: 396.4304}, {x: 0.03131524, y: null}, {x: 0.40967092, y: null}, {x: 0.17005988, y: null}, {x: 0.481234362, y: null}, {x: 0.391278727, y: null}, {x: 0.179205852, y: null}, {x: 0.221984297, y: null}, {x: 0.0691085, y: null}, {x: 0.249858677, y: null}, {x: 0.552872606, y: null}, {x: 0.049713193, y: null}, {x: 0.142937535, y: null}, {x: 0.067375887, y: null}, {x: 0.074641148, y: null}, {x: 0.063897764, y: null}, {x: 0.230122818, y: null}, {x: 0.111572392, y: null}, {x: 0.075578855, y: null}, {x: 0.201622248, y: null}, {x: 0.210282538, y: null}, {x: 0.360262009, y: null}, {x: 0.322089227, y: null}, {x: 0.273054755, y: null}, {x: 0.109810479, y: null}, {x: 0.327294686, y: null}, {x: 0.04622871, y: null}, {x: 0.0859375, y: null}, {x: 0.19243604, y: null}, {x: 0.067736185, y: null}, {x: 0.061049011, y: null}, {x: 0.594653573, y: null}, {x: 0.362873917, y: null}, {x: 0.291262136, y: null}, {x: 0.20498615, y: null}, {x: 0.29795022, y: null}, {x: 0.427745665, y: null}, {x: 0.158297612, y: null}, {x: 0.265428003, y: null}, {x: 0.339189189, y: null}, {x: 0.283116883, y: null}, {x: 0.318601583, y: null}, {x: 0.190318302, y: null}, {x: 0.098099326, y: null}, {x: 0.237961477, y: null}, {x: 0.086724209, y: null}, {x: 0.236474695, y: null}, {x: 0.239476678, y: null}, {x: 0.1629681, y: null}, {x: 0.129107981, y: null}, {x: 0.660637792, y: null}, {x: 0.330578512, y: null}, {x: 0.300610094, y: null}, {x: 0.032069971, y: null}, {x: 0.247815231, y: null}, {x: 0.580364212, y: null}, {x: 0.335894621, y: null}, {x: 0.255499154, y: null}, {x: 0.259661836, y: null}, {x: 0.235410485, y: null}, {x: 0.565844579, y: null}, {x: 0.57573474, y: null}, {x: 0.42234957, y: null}, {x: 0.147557841, y: null}, {x: 0.231820185, y: null}, {x: 0.387111517, y: null}, {x: 0.529156328, y: null}, {x: 0.316777711, y: null}, {x: 0.30511022, y: null}, {x: 0.248429867, y: null}, {x: 0.426433915, y: null}, {x: 0.422315537, y: null}, {x: 0.144502618, y: null}, {x: 0.208754209, y: null}, {x: 0.511163337, y: null}, {x: 0.286984127, y: null}, {x: 0.128423041, y: null}, {x: 0.211583924, y: null}, {x: 0.076095311, y: null}, {x: 0.158295964, y: null}, {x: 0.136226902, y: null}, {x: 0.265976872, y: null}, {x: 0.123474515, y: null}, {x: 0.446022727, y: null}, {x: 0.054071661, y: null}, {x: 0.071776156, y: null}, {x: 0.090050378, y: null}, {x: 0.0, y: null}, {x: 0.223326706, y: null}, {x: 0.03635586, y: null}, {x: 0.275534442, y: null}, {x: 0.326836582, y: null}, {x: 0.154453213, y: null}, {x: 0.205063291, y: null}, {x: 0.098650927, y: null}, {x: 0.075135135, y: null}, {x: 0.067017083, y: null}, {x: 0.059251559, y: null}, {x: 0.16097561, y: null}, {x: 0.185833333, y: null}, {x: 0.138705416, y: null}, {x: 0.154738878, y: null}, {x: 0.044871795, y: null}, {x: 0.14690027, y: null}, {x: 0.338028169, y: null}, {x: 0.52246696, y: null}, {x: 0.172413793, y: null}, {x: 0.115021459, y: null}, {x: 0.141581633, y: null}, {x: 0.106082037, y: null}, {x: 0.0, y: null}, {x: 0.12150838, y: null}, {x: 0.209925558, y: null}, {x: 0.082863341, y: null}, {x: 0.032795699, y: null}, {x: 0.023573201, y: null}, {x: 0.10982659, y: null}, {x: 0.14940239, y: null}, {x: 0.284820921, y: null}, {x: 0.112531969, y: null}, {x: 0.123175183, y: null}, {x: 0.065587381, y: null}, {x: 0.0625, y: null}, {x: 0.094403237, y: null}, {x: 0.050838841, y: null}, {x: 0.121404557, y: null}, {x: 0.116161616, y: null}, {x: 0.088031652, y: null}, {x: 0.049612949, y: null}, {x: 0.155812832, y: null}, {x: 0.235803657, y: null}, {x: 0.128851541, y: null}, {x: 0.087979094, y: null}, {x: 0.123535156, y: null}, {x: 0.028231798, y: null}, {x: 0.054859869, y: null}, {x: 0.123129543, y: null}, {x: 0.063233966, y: null}, {x: 0.123695976, y: null}, {x: 0.071623465, y: null}, {x: 0.132102273, y: null}, {x: 0.292043985, y: null}, {x: 0.090135203, y: null}, {x: 0.209802236, y: null}, {x: 0.169030733, y: null}, {x: 0.03007798, y: null}, {x: 0.207064555, y: null}, {x: 0.437000615, y: null}, {x: 0.218721461, y: null}, {x: 0.226645645, y: null}, {x: 0.172794118, y: null}, {x: 0.457156091, y: null}, {x: 0.145067698, y: null}, {x: 0.102296451, y: null}, {x: 0.498461539, y: null}, {x: 0.314540059, y: null}, {x: 0.150605886, y: null}, {x: 0.0, y: null}, {x: 0.306491372, y: null}, {x: 0.317115552, y: null}, {x: 0.241590214, y: null}, {x: 0.040730337, y: null}, {x: 0.140350877, y: null}, {x: 0.101250504, y: null}, {x: 0.507946599, y: null}, {x: 0.0, y: null}, {x: 0.152058111, y: null}, {x: 0.181583477, y: null}, {x: 0.487315011, y: null}, {x: 0.036982249, y: null}, {x: 0.204022989, y: null}, {x: 0.335982659, y: null}, {x: 0.129537367, y: null}, {x: 0.136276392, y: null}, {x: 0.192818111, y: null}, {x: 0.071604938, y: null}, {x: 0.259124088, y: null}, {x: 0.147353362, y: null}, {x: 0.130052724, y: null}, {x: 0.28827425, y: null}, {x: 0.175318315, y: null}, {x: 0.369326326, y: null}, {x: 0.160484482, y: null}, {x: 0.350442478, y: null}, {x: 0.599537037, y: null}, {x: 0.28042328, y: null}, {x: 0.259890444, y: null}, {x: 0.362240289, y: null}, {x: 0.129272568, y: null}, {x: 0.0390625, y: null}, {x: 0.149967679, y: null}, {x: 0.303797468, y: null}, {x: 0.023033708, y: null}, {x: 0.016806723, y: null}, {x: 0.170568562, y: null}, {x: 0.122352941, y: null}, {x: 0.039341263, y: null}, {x: 0.109647059, y: null}, {x: 0.08716707, y: null}, {x: 0.198654941, y: null}, {x: 0.061937716, y: null}, {x: 0.065693431, y: null}, {x: 0.115135135, y: null}, {x: 0.03237858, y: null}, {x: 0.3459281, y: null}, {x: 0.0, y: null}, {x: 0.19138756, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004470939, y: null}, {x: 0.212520593, y: null}, {x: 0.0, y: null}, {x: 0.213178295, y: null}, {x: 0.0, y: null}, {x: 0.077809798, y: null}, {x: 0.116010855, y: null}, {x: 0.142269253, y: null}, {x: 0.111382511, y: null}, {x: 0.098050797, y: null}, {x: 0.274478331, y: null}, {x: 0.137691238, y: null}, {x: 0.019138756, y: null}, {x: 0.077114428, y: null}, {x: 0.03634277, y: null}, {x: 0.184977579, y: null}, {x: 0.161616162, y: null}, {x: 0.144869215, y: null}, {x: 0.115196078, y: null}, {x: 0.29407566, y: null}, {x: 0.048228346, y: null}, {x: 0.034901366, y: null}, {x: 0.278867102, y: null}, {x: 0.0, y: null}, {x: 0.125, y: null}, {x: 0.083916084, y: null}, {x: 0.027110767, y: null}, {x: 0.17612978, y: null}, {x: 0.139183056, y: null}, {x: 0.019417476, y: null}, {x: 0.169364882, y: null}, {x: 0.037953795, y: null}, {x: 0.027924131, y: null}, {x: 0.092071611, y: null}, {x: 0.156435644, y: null}, {x: 0.217362492, y: null}, {x: 0.178988327, y: null}, {x: 0.61260274, y: null}, {x: 0.172613308, y: null}, {x: 0.159090909, y: null}, {x: 0.391891892, y: null}, {x: 0.3625, y: null}, {x: 0.22298066, y: null}, {x: 0.221126761, y: null}, {x: 0.142621599, y: null}, {x: 0.28998779, y: null}, {x: 0.082200647, y: null}, {x: 0.134475748, y: null}, {x: 0.117724868, y: null}, {x: 0.084556962, y: null}, {x: 0.059633028, y: null}, {x: 0.385915493, y: null}, {x: 0.100802855, y: null}, {x: 0.095906433, y: null}, {x: 0.034320639, y: null}, {x: 0.255776892, y: null}, {x: 0.309927361, y: null}, {x: 0.095238095, y: null}, {x: 0.171026157, y: null}, {x: 0.221621622, y: null}, {x: 0.055137845, y: null}, {x: 0.295910781, y: null}, {x: 0.221646517, y: null}, {x: 0.252659575, y: null}, {x: 0.378600823, y: null}, {x: 0.455370651, y: null}, {x: 0.10989011, y: null}, {x: 0.159634318, y: null}, {x: 0.066920152, y: null}, {x: 0.183700735, y: null}, {x: 0.276501112, y: null}, {x: 0.274838013, y: null}, {x: 0.346287703, y: null}, {x: 0.131021195, y: null}, {x: 0.191799861, y: null}, {x: 0.164594002, y: null}, {x: 0.220675944, y: null}, {x: 0.239422085, y: null}, {x: 0.113772455, y: null}, {x: 0.477117819, y: null}, {x: 0.148648649, y: null}, {x: 0.182078853, y: null}, {x: 0.046747967, y: null}, {x: 0.282539683, y: null}, {x: 0.146634615, y: null}, {x: 0.082309582, y: null}, {x: 0.26223092, y: null}, {x: 0.093004769, y: null}, {x: 0.129836629, y: null}, {x: 0.367276888, y: null}, {x: 0.355329949, y: null}, {x: 0.614285714, y: null}, {x: 0.159090909, y: null}, {x: 0.309612984, y: null}, {x: 0.056047198, y: null}, {x: 0.265486726, y: null}, {x: 0.31530343, y: null}, {x: 0.219877468, y: null}, {x: 0.340080972, y: null}, {x: 0.103184713, y: null}, {x: 0.115264798, y: null}, {x: 0.163120567, y: null}, {x: 0.374045802, y: null}, {x: 0.118867925, y: null}, {x: 0.592931937, y: null}, {x: 0.479779412, y: null}, {x: 0.40797546, y: null}, {x: 0.541989279, y: null}, {x: 0.281818182, y: null}, {x: 0.492907801, y: null}, {x: 0.412844037, y: null}, {x: 0.176886793, y: 68.97}, {x: 0.35326087, y: null}, {x: 0.518153295, y: null}, {x: 0.518617021, y: null}, {x: 0.305354559, y: null}, {x: 0.737541528, y: null}, {x: 0.106936416, y: null}, {x: 0.384902144, y: null}, {x: 0.216466739, y: null}, {x: 0.575528701, y: null}, {x: 0.10059761, y: null}, {x: 0.277856135, y: null}, {x: 0.144736842, y: null}, {x: 0.420344054, y: null}, {x: 0.401459854, y: null}, {x: 0.317577548, y: null}, {x: 0.432971015, y: null}, {x: 0.302484472, y: null}, {x: 0.502296451, y: null}, {x: 0.131878558, y: null}, {x: 0.293457944, y: null}, {x: 0.289705882, y: null}, {x: 0.515422441, y: null}, {x: 0.582990398, y: null}, {x: 0.6084172, y: null}, {x: 0.430502975, y: null}, {x: 0.456925116, y: null}, {x: 0.044362292, y: null}, {x: 0.671493902, y: null}, {x: 0.395071542, y: null}, {x: 0.576335878, y: null}, {x: 0.267900241, y: null}, {x: 0.828983517, y: null}, {x: 0.796267496, y: null}, {x: 0.799184044, y: null}, {x: 0.84992343, y: null}, {x: 0.731019523, y: null}, {x: 0.374351371, y: null}, {x: 0.444067797, y: null}, {x: 0.707037643, y: null}, {x: 0.718248175, y: null}, {x: 0.688563327, y: null}, {x: 0.674258475, y: null}, {x: 0.032231405, y: null}, {x: 0.78255814, y: null}, {x: 0.734068628, y: null}, {x: 0.661971831, y: null}, {x: 0.758853288, y: null}, {x: 0.666963491, y: null}, {x: 0.641925777, y: null}, {x: 0.324032403, y: null}, {x: 0.411968777, y: null}, {x: 0.517911975, y: null}, {x: 0.341836735, y: null}, {x: 0.46993007, y: null}, {x: 0.571830986, y: null}, {x: 0.453637661, y: null}, {x: 0.574983628, y: null}, {x: 0.532983508, y: null}, {x: 0.579912024, y: null}, {x: 0.56713615, y: null}, {x: 0.605245461, y: null}, {x: 0.65212528, y: null}, {x: 0.923493045, y: null}, {x: 0.876507754, y: null}, {x: 0.560779817, y: null}, {x: 0.207246377, y: null}, {x: 0.464190981, y: null}, {x: 0.431083381, y: null}, {x: 0.515789474, y: null}, {x: 0.655963303, y: null}, {x: 0.667422525, y: null}, {x: 0.396350365, y: null}, {x: 0.272511848, y: null}, {x: 0.516318887, y: null}, {x: 0.515609265, y: null}, {x: 0.602675059, y: null}, {x: 0.721714687, y: null}, {x: 0.741660202, y: null}, {x: 0.718281718, y: null}, {x: 0.618780096, y: null}, {x: 0.734313726, y: null}, {x: 0.407155026, y: null}, {x: 0.668717949, y: null}, {x: 0.418533605, y: null}, {x: 0.616371411, y: null}, {x: 0.767313019, y: null}, {x: 0.643095397, y: null}, {x: 0.625185185, y: null}, {x: 0.72706422, y: null}, {x: 0.744255319, y: null}, {x: 0.440241228, y: null}, {x: 0.622080679, y: null}, {x: 0.556372549, y: null}, {x: 0.63537415, y: null}, {x: 0.772651007, y: null}, {x: 0.606557377, y: null}, {x: 0.446389497, y: null}, {x: 0.777731443, y: null}, {x: 0.419548872, y: null}, {x: 0.0, y: null}, {x: 0.386536833, y: null}, {x: 0.56444218, y: null}, {x: 0.287428273, y: null}, {x: 0.604482132, y: null}, {x: 0.295918367, y: null}, {x: 0.623381877, y: null}, {x: 0.513906185, y: null}, {x: 0.195758564, y: null}, {x: 0.397735315, y: null}, {x: 0.52556391, y: null}, {x: 0.573728814, y: null}, {x: 0.18242831, y: null}, {x: 0.575060533, y: null}, {x: 0.491343776, y: null}, {x: 0.325977934, y: null}, {x: 0.250398724, y: null}, {x: 0.022792023, y: null}, {x: 0.545405112, y: null}, {x: 0.168631006, y: null}, {x: 0.269906929, y: null}, {x: 0.296381832, y: null}, {x: 0.413636364, y: null}, {x: 0.357927787, y: null}, {x: 0.158671587, y: null}, {x: 0.258098224, y: null}, {x: 0.041299559, y: null}, {x: 0.230936819, y: null}, {x: 0.097765363, y: null}, {x: 0.125792812, y: null}, {x: 0.360895386, y: null}, {x: 0.154545455, y: null}, {x: 0.307077626, y: null}, {x: 0.108033241, y: null}, {x: 0.077244259, y: null}, {x: 0.103020914, y: null}, {x: 0.120224719, y: null}, {x: 0.350978136, y: null}, {x: 0.543313709, y: null}, {x: 0.436901654, y: null}, {x: 0.186959937, y: null}, {x: 0.292079208, y: null}, {x: 0.073229292, y: null}, {x: 0.275015347, y: null}, {x: 0.247889486, y: null}, {x: 0.173461231, y: null}, {x: 0.135944701, y: null}, {x: 0.272207792, y: null}, {x: 0.376296296, y: null}, {x: 0.31459854, y: null}, {x: 0.164222874, y: null}, {x: 0.317220544, y: null}, {x: 0.18275154, y: null}, {x: 0.202154101, y: null}, {x: 0.448497854, y: null}, {x: 0.184772516, y: null}, {x: 0.405948553, y: null}, {x: 0.169306931, y: null}, {x: 0.129904098, y: null}, {x: 0.347428571, y: null}, {x: 0.261146497, y: null}, {x: 0.20376379, y: null}, {x: 0.446182728, y: null}, {x: 0.339922854, y: null}, {x: 0.308903366, y: null}, {x: 0.320463321, y: null}, {x: 0.661596958, y: null}, {x: 0.346938776, y: null}, {x: 0.528271406, y: null}, {x: 0.491902834, y: null}, {x: 0.490312966, y: null}, {x: 0.252487562, y: null}, {x: 0.585412668, y: null}, {x: 0.401647786, y: null}, {x: 0.499089253, y: null}, {x: 0.23880597, y: null}, {x: 0.264772727, y: null}, {x: 0.562657696, y: null}, {x: 0.607361963, y: null}, {x: 0.54491018, y: null}, {x: 0.52915952, y: null}, {x: 0.494871795, y: null}, {x: 0.454415954, y: 2.8}, {x: 0.434920635, y: null}, {x: 0.44345898, y: null}, {x: 0.3796875, y: null}, {x: 0.499515973, y: null}, {x: 0.53803681, y: null}, {x: 0.782488987, y: null}, {x: 0.311550152, y: null}, {x: 0.494296578, y: null}, {x: 0.208085612, y: null}, {x: 0.334935127, y: null}, {x: 0.320735444, y: null}, {x: 0.657445077, y: null}, {x: 0.472094214, y: null}, {x: 0.302325581, y: null}, {x: 0.179362507, y: null}, {x: 0.457473163, y: null}, {x: 0.277013753, y: null}, {x: 0.664921466, y: null}, {x: 0.448012846, y: null}, {x: 0.557729941, y: null}, {x: 0.526024363, y: null}, {x: 0.516544908, y: null}, {x: 0.248148148, y: null}, {x: 0.627408994, y: null}, {x: 0.240480962, y: null}, {x: 0.517220172, y: null}, {x: 0.331100479, y: null}, {x: 0.433952788, y: null}, {x: 0.444035346, y: null}, {x: 0.273517382, y: null}, {x: 0.461926374, y: null}, {x: 0.253648367, y: null}, {x: 0.215098242, y: null}, {x: 0.311276794, y: null}, {x: 0.399352751, y: null}, {x: 0.527310924, y: null}, {x: 0.593621399, y: null}, {x: 0.644830308, y: null}, {x: 0.292722813, y: null}, {x: 0.17585693, y: null}, {x: 0.26147427, y: null}, {x: 0.409395973, y: null}, {x: 0.659682899, y: null}, {x: 0.418455916, y: null}, {x: 0.18778626, y: null}, {x: 0.36934793, y: null}, {x: 0.385300668, y: null}, {x: 0.375831486, y: null}, {x: 0.21319797, y: 1.38}, {x: 0.19535284, y: null}, {x: 0.24929972, y: 3.71}, {x: 0.357392317, y: null}, {x: 0.571626298, y: null}, {x: 0.153046062, y: null}, {x: 0.208850932, y: null}, {x: 0.202739726, y: null}, {x: 0.252725471, y: null}, {x: 0.306990882, y: null}, {x: 0.293977813, y: null}, {x: 0.0, y: null}, {x: 0.407831325, y: null}, {x: 0.610091743, y: null}, {x: 0.381964809, y: null}, {x: 0.481997677, y: null}, {x: 0.368603643, y: null}, {x: 0.406901042, y: null}, {x: 0.286720322, y: null}, {x: 0.319413919, y: null}, {x: 0.573394495, y: null}, {x: 0.387722133, y: null}, {x: 0.541471963, y: null}, {x: 0.2104, y: null}, {x: 0.245122986, y: null}, {x: 0.966069746, y: null}, {x: 0.752317881, y: null}, {x: 0.441649899, y: null}, {x: 0.242375602, y: 1.975}, {x: 0.229329173, y: null}, {x: 0.174163783, y: null}, {x: 0.255635246, y: null}, {x: 0.271659325, y: 45.306}, {x: 0.455522972, y: null}, {x: 0.406447535, y: null}, {x: 0.0, y: null}, {x: 0.352852853, y: null}, {x: 0.154690619, y: null}, {x: 0.469187675, y: null}, {x: 0.174045802, y: null}, {x: 0.263649425, y: null}, {x: 0.209107807, y: null}, {x: 0.280471822, y: null}, {x: 0.0, y: null}, {x: 0.332987552, y: null}, {x: 0.198484849, y: null}, {x: 0.205780347, y: null}, {x: 0.22927242, y: null}, {x: 0.362629758, y: null}, {x: 0.313840156, y: null}, {x: 0.365678347, y: null}, {x: 0.320754717, y: null}, {x: 0.368608799, y: null}, {x: 0.057407407, y: null}, {x: 0.165480427, y: null}, {x: 0.233230134, y: null}, {x: 0.289017341, y: null}, {x: 0.292469352, y: null}, {x: 0.190821256, y: null}, {x: 0.345977012, y: null}, {x: 0.012320329, y: null}, {x: 0.155307263, y: null}, {x: 0.402645114, y: 12.033039}, {x: 0.35390625, y: null}, {x: 0.349194729, y: null}, {x: 0.354014599, y: null}, {x: 0.170068027, y: null}, {x: 0.153770813, y: null}, {x: 0.195081967, y: null}, {x: 0.228215768, y: null}, {x: 0.03030303, y: null}, {x: 0.496884735, y: null}, {x: 0.170334928, y: null}, {x: 0.258660508, y: null}, {x: 0.520408163, y: null}, {x: 0.198824682, y: null}, {x: 0.44518103, y: null}, {x: 0.285294118, y: null}, {x: 0.173435785, y: null}, {x: 0.336798337, y: null}, {x: 0.19822283, y: null}, {x: 0.215384615, y: null}, {x: 0.44743083, y: null}, {x: 0.173963134, y: null}, {x: 0.245762712, y: null}, {x: 0.398488121, y: null}, {x: 0.166437414, y: null}, {x: 0.225690276, y: null}, {x: 0.263605442, y: null}, {x: 0.188160677, y: null}, {x: 0.470787468, y: null}, {x: 0.27025393, y: null}, {x: 0.203605514, y: null}, {x: 0.315976331, y: null}, {x: 0.262450593, y: null}, {x: 0.208191126, y: null}, {x: 0.121158911, y: null}, {x: 0.165914221, y: null}, {x: 0.229357798, y: null}, {x: 0.347689076, y: null}, {x: 0.36382755, y: null}, {x: 0.350684932, y: null}, {x: 0.354658385, y: null}, {x: 0.558756634, y: null}, {x: 0.41745531, y: null}, {x: 0.411050649, y: null}, {x: 0.663316583, y: null}, {x: 0.648963731, y: null}, {x: 0.28664193, y: null}, {x: 0.158183242, y: null}, {x: 0.43501171, y: null}, {x: 0.456880734, y: null}, {x: 0.429235168, y: null}, {x: 0.381386861, y: null}, {x: 0.302726544, y: null}, {x: 0.190038314, y: null}, {x: 0.35959596, y: null}, {x: 0.428082192, y: null}, {x: 0.592857143, y: null}, {x: 0.287808642, y: null}, {x: 0.477477478, y: null}, {x: 0.502994012, y: null}, {x: 0.423740511, y: null}, {x: 0.292457949, y: null}, {x: 0.287833828, y: null}, {x: 0.276264591, y: null}, {x: 0.19135365, y: null}, {x: 0.434782609, y: null}, {x: 0.424533635, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.1272509, y: null}, {x: 0.27133758, y: null}, {x: 0.313188766, y: null}, {x: 0.204883227, y: null}, {x: 0.326253186, y: null}, {x: 0.666666667, y: null}, {x: 0.496977838, y: null}, {x: 0.638051044, y: null}, {x: 0.568939771, y: null}, {x: 0.276595745, y: null}, {x: 0.457496136, y: null}, {x: 0.318555008, y: null}, {x: 0.053973013, y: null}, {x: 0.166064982, y: null}, {x: 0.163043478, y: null}, {x: 0.498940678, y: null}, {x: 0.101214575, y: null}, {x: 0.030330882, y: null}, {x: 0.16509434, y: null}, {x: 0.103616813, y: null}, {x: 0.04805492, y: null}, {x: 0.176267848, y: null}, {x: 0.135287486, y: null}, {x: 0.687378641, y: null}, {x: 0.279783394, y: null}, {x: 0.394654088, y: null}, {x: 0.22440678, y: null}, {x: 0.018410853, y: null}, {x: 0.110447761, y: null}, {x: 0.1769437, y: null}, {x: 0.048816568, y: null}, {x: 0.241057543, y: null}, {x: 0.060537268, y: null}, {x: 0.307324079, y: null}, {x: 0.196296296, y: null}, {x: 0.284334313, y: null}, {x: 0.18614021, y: null}, {x: 0.403342618, y: 0.0117}, {x: 0.508752735, y: null}, {x: 0.4092827, y: null}, {x: 0.481180061, y: null}, {x: 0.68533171, y: null}, {x: 0.339680122, y: null}, {x: 0.157054126, y: null}, {x: 0.429906542, y: null}, {x: 0.212651413, y: null}, {x: 0.401856764, y: null}, {x: 0.359160613, y: null}, {x: 0.336751214, y: null}, {x: 0.212268314, y: null}, {x: 0.119665272, y: null}, {x: 0.147058824, y: null}, {x: 0.161369193, y: null}, {x: 0.181571816, y: null}, {x: 0.063391442, y: null}, {x: 0.186489058, y: null}, {x: 0.192680301, y: null}, {x: 0.14379085, y: null}, {x: 0.185079929, y: null}, {x: 0.281767956, y: null}, {x: 0.24963977, y: null}, {x: 0.147244095, y: null}, {x: 0.054298643, y: null}, {x: 0.16137806, y: null}, {x: 0.195821385, y: null}, {x: 0.075313808, y: null}, {x: 0.172024327, y: null}, {x: 0.301449275, y: null}, {x: 0.17764804, y: null}, {x: 0.094972067, y: null}, {x: 0.24010327, y: null}, {x: 0.164227642, y: null}, {x: 0.171111881, y: null}, {x: 0.255501223, y: null}, {x: 0.246316759, y: null}, {x: 0.317932296, y: null}, {x: 0.294478528, y: null}, {x: 0.167418264, y: null}, {x: 0.219114219, y: null}, {x: 0.363018355, y: null}, {x: 0.266115703, y: null}, {x: 0.370618941, y: null}, {x: 0.265232975, y: null}, {x: 0.354391371, y: null}, {x: 0.174757282, y: null}, {x: 0.330218069, y: null}, {x: 0.15993266, y: null}, {x: 0.058823529, y: null}, {x: 0.402554137, y: null}, {x: 0.258713137, y: null}, {x: 0.385956175, y: null}, {x: 0.433810048, y: null}, {x: 0.239772727, y: null}, {x: 0.203688853, y: null}, {x: 0.181273816, y: null}, {x: 0.176570458, y: null}, {x: 0.390854185, y: null}, {x: 0.526165557, y: null}, {x: 0.328767123, y: null}, {x: 0.509738079, y: null}, {x: 0.376847291, y: null}, {x: 0.441295547, y: null}, {x: 0.500341297, y: null}, {x: 0.043680839, y: null}, {x: 0.349788434, y: null}, {x: 0.35967801, y: null}, {x: 0.460141271, y: null}, {x: 0.672914714, y: null}, {x: 0.175465839, y: null}, {x: 0.481203008, y: null}, {x: 0.649269311, y: null}, {x: 0.364705882, y: null}, {x: 0.357692308, y: null}, {x: 0.181886793, y: null}, {x: 0.244627054, y: null}, {x: 0.70886076, y: null}, {x: 0.74380805, y: null}, {x: 0.440987125, y: null}, {x: 0.484683458, y: null}, {x: 0.220501475, y: null}, {x: 0.355712603, y: null}, {x: 0.447729673, y: null}, {x: 0.175059952, y: null}, {x: 0.068669528, y: null}, {x: 0.157848325, y: null}, {x: 0.124183007, y: null}, {x: 0.505770816, y: null}, {x: 0.308994709, y: null}, {x: 0.625924315, y: null}, {x: 0.429097606, y: null}, {x: 0.298921418, y: null}, {x: 0.368383405, y: null}, {x: 0.185582822, y: null}, {x: 0.212833258, y: null}, {x: 0.088582677, y: null}, {x: 0.220714286, y: null}, {x: 0.189666893, y: null}, {x: 0.156603774, y: null}, {x: 0.328396323, y: null}, {x: 0.059701493, y: null}, {x: 0.415878023, y: null}, {x: 0.455231388, y: null}, {x: 0.488, y: null}, {x: 0.132034632, y: null}, {x: 0.28785489, y: null}, {x: 0.241537579, y: null}, {x: 0.182328191, y: null}, {x: 0.111204013, y: null}, {x: 0.246540881, y: null}, {x: 0.103542234, y: null}, {x: 0.266040689, y: null}, {x: 0.062761506, y: null}, {x: 0.284039675, y: null}, {x: 0.437919463, y: null}, {x: 0.336483932, y: null}, {x: 0.125723739, y: null}, {x: 0.173109244, y: null}, {x: 0.261016949, y: null}, {x: 0.0, y: null}, {x: 0.483427142, y: null}, {x: 0.040922619, y: null}, {x: 0.321246819, y: null}, {x: 0.373563218, y: null}, {x: 0.435679612, y: null}, {x: 0.211428571, y: null}, {x: 0.398601399, y: null}, {x: 0.260465116, y: null}, {x: 0.207979627, y: null}, {x: 0.265402844, y: null}, {x: 0.369640788, y: null}, {x: 0.550929368, y: null}, {x: 0.285497342, y: null}, {x: 0.0974084, y: null}, {x: 0.272463768, y: null}, {x: 0.386812046, y: null}, {x: 0.139037433, y: null}, {x: 0.124192391, y: null}, {x: 0.497222222, y: null}, {x: 0.153305204, y: null}, {x: 0.272948822, y: null}, {x: 0.099647266, y: null}, {x: 0.223744292, y: null}, {x: 0.188248096, y: null}, {x: 0.343161343, y: null}, {x: 0.322883173, y: null}, {x: 0.123476418, y: null}, {x: 0.097308489, y: null}, {x: 0.278278278, y: null}, {x: 0.219834711, y: null}, {x: 0.360912982, y: null}, {x: 0.308182264, y: null}, {x: 0.435682327, y: null}, {x: 0.265086207, y: null}, {x: 0.254649499, y: null}, {x: 0.326553051, y: null}, {x: 0.105407883, y: null}, {x: 0.240506329, y: null}, {x: 0.21040724, y: null}, {x: 0.547151277, y: null}, {x: 0.351598174, y: null}, {x: 0.269668737, y: null}, {x: 0.285714286, y: null}, {x: 0.399716848, y: null}, {x: 0.530169492, y: null}, {x: 0.303955586, y: null}, {x: 0.119119879, y: null}, {x: 0.224776501, y: null}, {x: 0.23222061, y: null}, {x: 0.102230483, y: null}, {x: 0.171343284, y: null}, {x: 0.329479769, y: null}, {x: 0.452363091, y: null}, {x: 0.142679901, y: null}, {x: 0.209335219, y: null}, {x: 0.33433584, y: null}, {x: 0.455710956, y: null}, {x: 0.095744681, y: null}, {x: 0.253578732, y: null}, {x: 0.275033378, y: null}, {x: 0.498207885, y: null}, {x: 0.15015015, y: null}, {x: 0.393551446, y: null}, {x: 0.156346749, y: null}, {x: 0.307282416, y: null}, {x: 0.146107784, y: null}, {x: 0.363226453, y: null}, {x: 0.355444305, y: null}, {x: 0.301992846, y: null}, {x: 0.223898612, y: null}, {x: 0.279843444, y: null}, {x: 0.255772647, y: null}, {x: 0.149262537, y: null}, {x: 0.17305586, y: null}, {x: 0.184964201, y: null}, {x: 0.207594937, y: null}, {x: 0.289699571, y: null}, {x: 0.061064087, y: null}, {x: 0.098532495, y: null}, {x: 0.038422649, y: null}, {x: 0.13215859, y: null}, {x: 0.277185501, y: null}, {x: 0.290976821, y: null}, {x: 0.02425107, y: null}, {x: 0.096469418, y: null}, {x: 0.245923913, y: null}, {x: 0.055293324, y: null}, {x: 0.136594663, y: null}, {x: 0.049872123, y: null}, {x: 0.340761374, y: null}, {x: 0.298093588, y: null}, {x: 0.035862069, y: null}, {x: 0.419741697, y: null}, {x: 0.489655172, y: null}, {x: 0.418487395, y: null}, {x: 0.483902439, y: null}, {x: 0.657560356, y: null}, {x: 0.510857143, y: null}, {x: 0.150576806, y: null}, {x: 0.164612676, y: null}, {x: 0.367916303, y: null}, {x: 0.569039914, y: null}, {x: 0.575, y: null}, {x: 0.808520599, y: null}, {x: 0.858036273, y: null}, {x: 0.617763158, y: null}, {x: 0.518049398, y: null}, {x: 0.828442438, y: null}, {x: 0.410153641, y: null}, {x: 0.687372014, y: null}, {x: 0.240288568, y: null}, {x: 0.723423423, y: null}, {x: 0.053521127, y: null}, {x: 0.429067748, y: null}, {x: 0.633072407, y: null}, {x: 0.520833333, y: null}, {x: 0.5525, y: null}, {x: 0.213942308, y: null}, {x: 0.365323097, y: null}, {x: 0.569832402, y: null}, {x: 0.323170732, y: null}, {x: 0.346815435, y: null}, {x: 0.864583333, y: null}, {x: 0.336764706, y: null}, {x: 0.2864494, y: null}, {x: 0.110791367, y: null}, {x: 0.325129534, y: null}, {x: 0.291204986, y: null}, {x: 0.233656174, y: null}, {x: 0.239210285, y: null}, {x: 0.198501873, y: null}, {x: 0.101176471, y: null}, {x: 0.433772756, y: null}, {x: 0.16462841, y: null}, {x: 0.126669365, y: null}, {x: 0.269754768, y: null}, {x: 0.40672187, y: null}, {x: 0.328777525, y: null}, {x: 0.193958665, y: null}, {x: 0.092515593, y: null}, {x: 0.354469855, y: null}, {x: 0.019249278, y: null}, {x: 0.330551692, y: null}, {x: 0.0, y: null}, {x: 0.081285444, y: null}, {x: 0.545370655, y: null}, {x: 0.245692884, y: null}, {x: 0.402533427, y: null}, {x: 0.451854372, y: null}, {x: 0.008665511, y: null}, {x: 0.275546159, y: null}, {x: 0.155932203, y: null}, {x: 0.279180388, y: null}, {x: 0.189320388, y: null}, {x: 0.200105042, y: null}, {x: 0.318367347, y: null}, {x: 0.362576508, y: null}, {x: 0.106971154, y: null}, {x: 0.132747253, y: null}, {x: 0.200153965, y: null}, {x: 0.055757576, y: null}, {x: 0.09388412, y: null}, {x: 0.059440559, y: null}, {x: 0.263854425, y: null}, {x: 0.086638831, y: null}, {x: 0.065292096, y: null}, {x: 0.127046496, y: null}, {x: 0.115723923, y: null}, {x: 0.326947637, y: null}, {x: 0.157667387, y: null}, {x: 0.156472262, y: null}, {x: 0.094880847, y: null}, {x: 0.300946143, y: null}, {x: 0.247046187, y: null}, {x: 0.479674797, y: null}, {x: 0.230994152, y: null}, {x: 0.33545402, y: 0.0002}, {x: 0.052132701, y: null}, {x: 0.042813456, y: null}, {x: 0.802477184, y: null}, {x: 0.493624772, y: null}, {x: 0.435756385, y: null}, {x: 0.0, y: null}, {x: 0.125087352, y: null}, {x: 0.142585551, y: null}, {x: 0.33089701, y: null}, {x: 0.538396625, y: null}, {x: 0.265013055, y: null}, {x: 0.066505441, y: null}, {x: 0.0, y: null}, {x: 0.186875892, y: null}, {x: 0.152208202, y: null}, {x: 0.128019324, y: null}, {x: 0.323877069, y: null}, {x: 0.0, y: null}, {x: 0.324041812, y: null}, {x: 0.335646141, y: null}, {x: 0.592633929, y: null}, {x: 0.589965398, y: null}, {x: 0.339244851, y: null}, {x: 0.319901569, y: null}, {x: 0.609080842, y: null}, {x: 0.23853525, y: null}, {x: 0.2376, y: null}, {x: 0.378519974, y: null}, {x: 0.276356831, y: null}, {x: 0.252121817, y: null}, {x: 0.361656704, y: null}, {x: 0.215590743, y: null}, {x: 0.403463204, y: null}, {x: 0.048368298, y: null}, {x: 0.43122102, y: null}, {x: 0.134644478, y: null}, {x: 0.31283628, y: null}, {x: 0.182389937, y: null}, {x: 0.400589102, y: null}, {x: 0.393464942, y: null}, {x: 0.434758772, y: null}, {x: 0.278431373, y: null}, {x: 0.229303548, y: null}, {x: 0.074561404, y: null}, {x: 0.333865815, y: null}, {x: 0.273105745, y: null}, {x: 0.374668786, y: null}, {x: 0.240279163, y: null}, {x: 0.387490465, y: null}, {x: 0.236363636, y: null}, {x: 0.358986175, y: null}, {x: 0.372798434, y: null}, {x: 0.183767228, y: null}, {x: 0.469234885, y: null}, {x: 0.343615052, y: null}, {x: 0.229545455, y: null}, {x: 0.297575758, y: null}, {x: 0.355607477, y: null}, {x: 0.592121982, y: null}, {x: 0.382690302, y: null}, {x: 0.242718447, y: null}, {x: 0.353798127, y: null}, {x: 0.287280702, y: null}, {x: 0.124495289, y: null}, {x: 0.162212554, y: null}, {x: 0.138909091, y: null}, {x: 0.408499566, y: null}, {x: 0.312469675, y: null}, {x: 0.144219309, y: null}, {x: 0.238197425, y: null}, {x: 0.151552795, y: null}, {x: 0.123413258, y: null}, {x: 0.155276992, y: null}, {x: 0.242813456, y: null}, {x: 0.190909091, y: null}, {x: 0.0, y: null}, {x: 0.241575161, y: null}, {x: 0.075421473, y: null}, {x: 0.262490679, y: null}, {x: 0.223963134, y: null}, {x: 0.198603569, y: null}, {x: 0.178683386, y: null}, {x: 0.111854685, y: null}, {x: 0.132231405, y: null}, {x: 0.118500605, y: null}, {x: 0.053787879, y: null}, {x: 0.028061224, y: null}, {x: 0.143234323, y: null}, {x: 0.0, y: null}, {x: 0.083930399, y: null}, {x: 0.140676841, y: null}, {x: 0.181724316, y: null}, {x: 0.126268657, y: null}, {x: 0.003679853, y: null}, {x: 0.24940048, y: null}, {x: 0.297577855, y: null}, {x: 0.063529412, y: null}, {x: 0.17574021, y: null}, {x: 0.146396396, y: null}, {x: 0.341113106, y: null}, {x: 0.297681376, y: null}, {x: 0.376661743, y: null}, {x: 0.589836661, y: null}, {x: 0.103918228, y: null}, {x: 0.173866091, y: null}, {x: 0.0, y: null}, {x: 0.052516411, y: null}, {x: 0.14171123, y: null}, {x: 0.201823708, y: null}, {x: 0.085377821, y: null}, {x: 0.417061611, y: null}, {x: 0.202511774, y: null}, {x: 0.105524079, y: null}, {x: 0.079522863, y: null}, {x: 0.126707132, y: null}, {x: 0.29499561, y: null}, {x: 0.383693046, y: null}, {x: 0.276165803, y: null}, {x: 0.268060837, y: null}, {x: 0.339449541, y: null}, {x: 0.154738878, y: null}, {x: 0.136468774, y: null}, {x: 0.196555218, y: null}, {x: 0.554667788, y: null}, {x: 0.15597148, y: null}, {x: 0.23524343, y: null}, {x: 0.322191272, y: null}, {x: 0.28372591, y: null}, {x: 0.123559539, y: null}, {x: 0.112867809, y: null}, {x: 0.022659256, y: null}, {x: 0.092447917, y: null}, {x: 0.063852243, y: null}, {x: 0.0, y: null}, {x: 0.133391456, y: null}, {x: 0.090115125, y: null}, {x: 0.172472873, y: null}, {x: 0.037712895, y: null}, {x: 0.146007605, y: null}, {x: 0.15511222, y: null}, {x: 0.0198188, y: null}, {x: 0.050741608, y: null}, {x: 0.169124877, y: null}, {x: 0.151589242, y: null}, {x: 0.179171333, y: null}, {x: 0.069127124, y: null}, {x: 0.116481392, y: null}, {x: 0.129323308, y: null}, {x: 0.04685836, y: null}, {x: 0.016800584, y: null}, {x: 0.048023642, y: null}, {x: 0.100680272, y: null}, {x: 0.58206278, y: null}, {x: 0.0, y: null}, {x: 0.085852479, y: null}, {x: 0.15303526, y: null}, {x: 0.524165708, y: null}, {x: 0.325624422, y: null}, {x: 0.123513871, y: null}, {x: 0.0, y: null}, {x: 0.127576602, y: null}, {x: 0.183862434, y: null}, {x: 0.111435726, y: null}, {x: 0.252941177, y: null}, {x: 0.07177814, y: null}, {x: 0.143512451, y: null}, {x: 0.03902439, y: null}, {x: 0.372747253, y: null}, {x: 0.095264938, y: null}, {x: 0.434782609, y: null}, {x: 0.117625093, y: null}, {x: 0.111768185, y: null}, {x: 0.062271062, y: null}, {x: 0.038184438, y: null}, {x: 0.037009063, y: null}, {x: 0.164162178, y: null}, {x: 0.315154994, y: null}, {x: 0.114213198, y: null}, {x: 0.112081514, y: null}, {x: 0.0, y: null}, {x: 0.126518219, y: null}, {x: 0.589641434, y: null}, {x: 0.202255109, y: null}, {x: 0.163157895, y: null}, {x: 0.06900801, y: null}, {x: 0.495283019, y: null}, {x: 0.11902615, y: null}, {x: 0.08789315, y: null}, {x: 0.213245033, y: null}, {x: 0.160091481, y: null}, {x: 0.107175713, y: null}, {x: 0.325405405, y: null}, {x: 0.127067015, y: null}, {x: 0.293577982, y: null}, {x: 0.288843607, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075313808, y: null}, {x: 0.550359712, y: null}, {x: 0.0, y: null}, {x: 0.118030413, y: null}, {x: 0.179292929, y: null}, {x: 0.079299691, y: null}, {x: 0.239059968, y: null}, {x: 0.114947197, y: null}, {x: 0.102760736, y: null}, {x: 0.153924222, y: null}, {x: 0.017120623, y: null}, {x: 0.116334661, y: null}, {x: 0.365664404, y: null}, {x: 0.156437126, y: null}, {x: 0.025022341, y: null}, {x: 0.269158879, y: null}, {x: 0.622871046, y: null}, {x: 0.217356042, y: null}, {x: 0.289119804, y: null}, {x: 0.437041972, y: null}, {x: 0.625321337, y: null}, {x: 0.210368893, y: null}, {x: 0.367272727, y: null}, {x: 0.289623717, y: null}, {x: 0.403438395, y: null}, {x: 0.094339623, y: null}, {x: 0.176, y: null}, {x: 0.353255426, y: null}, {x: 0.476152623, y: null}, {x: 0.268591772, y: null}, {x: 0.247044917, y: null}, {x: 0.194107452, y: null}, {x: 0.207771182, y: null}, {x: 0.24205379, y: null}, {x: 0.288085359, y: null}, {x: 0.192329708, y: null}, {x: 0.177777778, y: null}, {x: 0.444206009, y: null}, {x: 0.193922431, y: null}, {x: 0.236474695, y: null}, {x: 0.152218996, y: null}, {x: 0.067391304, y: null}, {x: 0.633761106, y: null}, {x: 0.378848728, y: null}, {x: 0.155805978, y: null}, {x: 0.223214286, y: null}, {x: 0.141225733, y: null}, {x: 0.238128987, y: null}, {x: 0.105389222, y: null}, {x: 0.226868793, y: null}, {x: 0.179365079, y: null}, {x: 0.139650873, y: null}, {x: 0.289487312, y: null}, {x: 0.265251989, y: null}, {x: 0.776556777, y: null}, {x: 0.336858006, y: null}, {x: 0.093155894, y: null}, {x: 0.061428571, y: null}, {x: 0.578643579, y: null}, {x: 0.676948052, y: null}, {x: 0.800447177, y: null}, {x: 0.098207327, y: null}, {x: 0.541666667, y: null}, {x: 0.142259414, y: null}, {x: 0.031313131, y: null}, {x: 0.554314721, y: null}, {x: 0.050111359, y: null}, {x: 0.025575448, y: null}, {x: 0.060606061, y: null}, {x: 0.0, y: null}, {x: 0.272820513, y: null}, {x: 0.184559711, y: null}, {x: 0.097065463, y: null}, {x: 0.438481675, y: null}, {x: 0.523618091, y: null}, {x: 0.425742574, y: null}, {x: 0.255975328, y: null}, {x: 0.331612903, y: null}, {x: 0.30228667, y: null}, {x: 0.468108108, y: null}, {x: 0.808575804, y: null}, {x: 0.650214592, y: null}, {x: 0.731553057, y: null}, {x: 0.623893805, y: null}, {x: 0.583061889, y: null}, {x: 0.477015825, y: null}, {x: 0.241610738, y: null}, {x: 0.246464039, y: null}, {x: 0.020792079, y: null}, {x: 0.329139073, y: null}, {x: 0.296934866, y: null}, {x: 0.536317568, y: null}, {x: 0.419132829, y: null}, {x: 0.332554062, y: null}, {x: 0.655139289, y: null}, {x: 0.510978044, y: null}, {x: 0.705842848, y: null}, {x: 0.720833333, y: null}, {x: 0.458333333, y: null}, {x: 0.27124183, y: null}, {x: 0.452717391, y: null}, {x: 0.457732949, y: null}, {x: 0.644927536, y: null}, {x: 0.178466077, y: null}, {x: 0.64235166, y: null}, {x: 0.511641444, y: null}, {x: 0.142367067, y: null}, {x: 0.303030303, y: null}, {x: 0.047302905, y: null}, {x: 0.407783418, y: null}, {x: 0.363344051, y: null}, {x: 0.301818182, y: null}, {x: 0.257738095, y: null}, {x: 0.455690508, y: null}, {x: 0.047013977, y: null}, {x: 0.480806142, y: null}, {x: 0.148148148, y: null}, {x: 0.083032491, y: null}, {x: 0.256652868, y: null}, {x: 0.449941793, y: null}, {x: 0.502857143, y: null}, {x: 0.394893617, y: null}, {x: 0.455964326, y: null}, {x: 0.358895706, y: null}, {x: 0.487179487, y: null}, {x: 0.428381079, y: null}, {x: 0.722955145, y: null}, {x: 0.466138329, y: null}, {x: 0.484363636, y: null}, {x: 0.234217749, y: null}, {x: 0.440431267, y: null}, {x: 0.278461539, y: null}, {x: 0.285258964, y: null}, {x: 0.639753376, y: null}, {x: 0.459951456, y: null}, {x: 0.467357513, y: null}, {x: 0.626714801, y: null}, {x: 0.298892989, y: null}, {x: 0.539954853, y: null}, {x: 0.243928194, y: null}, {x: 0.301120448, y: null}, {x: 0.236024845, y: null}, {x: 0.536796537, y: null}, {x: 0.21187801, y: null}, {x: 0.599023332, y: null}, {x: 0.560414269, y: null}, {x: 0.658061374, y: null}, {x: 0.419966302, y: null}, {x: 0.506322445, y: null}, {x: 0.27308603, y: null}, {x: 0.0, y: null}, {x: 0.211217184, y: null}, {x: 0.088700565, y: null}, {x: 0.434358224, y: null}, {x: 0.246028143, y: null}, {x: 0.213157895, y: null}, {x: 0.235191638, y: null}, {x: 0.432766615, y: null}, {x: 0.432024169, y: null}, {x: 0.174089069, y: null}, {x: 0.43256579, y: null}, {x: 0.267912773, y: null}, {x: 0.638860631, y: null}, {x: 0.125090383, y: null}, {x: 0.328007519, y: null}, {x: 0.268500949, y: null}, {x: 0.451703407, y: null}, {x: 0.228358209, y: null}, {x: 0.272848566, y: null}, {x: 0.163146067, y: null}, {x: 0.196129032, y: null}, {x: 0.350411132, y: null}, {x: 0.321415803, y: null}, {x: 0.194068343, y: null}, {x: 0.404568902, y: null}, {x: 0.170212766, y: null}, {x: 0.346330275, y: null}, {x: 0.706701031, y: null}, {x: 0.534646739, y: null}, {x: 0.744510978, y: null}, {x: 0.745925616, y: null}, {x: 0.715239155, y: null}, {x: 0.638457687, y: null}, {x: 0.605493134, y: null}, {x: 0.762241292, y: null}, {x: 0.731707317, y: null}, {x: 0.0, y: null}, {x: 0.735701906, y: null}, {x: 0.842105263, y: null}, {x: 0.851461428, y: null}, {x: 0.854760461, y: null}, {x: 0.700987306, y: null}, {x: 0.809554551, y: null}, {x: 0.542168675, y: null}, {x: 0.70011534, y: null}, {x: 0.630434783, y: null}, {x: 0.703597122, y: null}, {x: 0.477761119, y: null}, {x: 0.084656085, y: null}, {x: 0.218037661, y: null}, {x: 0.31827957, y: null}, {x: 0.200140449, y: null}, {x: 0.089765101, y: null}, {x: 0.321628093, y: null}, {x: 0.327291037, y: null}, {x: 0.152145644, y: null}, {x: 0.036794767, y: null}, {x: 0.13676976, y: null}, {x: 0.151361329, y: null}, {x: 0.100806452, y: null}, {x: 0.405745063, y: null}, {x: 0.107708553, y: null}, {x: 0.070974576, y: null}, {x: 0.038854806, y: null}, {x: 0.408336277, y: null}, {x: 0.201072386, y: null}, {x: 0.175342466, y: null}, {x: 0.263991552, y: null}, {x: 0.134215501, y: null}, {x: 0.141125541, y: null}, {x: 0.493091949, y: null}, {x: 0.169693175, y: null}, {x: 0.151515152, y: null}, {x: 0.12715713, y: null}, {x: 0.238372093, y: null}, {x: 0.211703959, y: null}, {x: 0.182995496, y: null}, {x: 0.090909091, y: null}, {x: 0.232673267, y: null}, {x: 0.106060606, y: null}, {x: 0.208279431, y: null}, {x: 0.343478261, y: null}, {x: 0.258687259, y: null}, {x: 0.065675341, y: null}, {x: 0.322373697, y: null}, {x: 0.123758594, y: null}, {x: 0.288623285, y: null}, {x: 0.073569482, y: null}, {x: 0.118829982, y: null}, {x: 0.149234694, y: null}, {x: 0.15250291, y: null}, {x: 0.060626703, y: null}, {x: 0.092255125, y: null}, {x: 0.448385389, y: null}, {x: 0.196416722, y: null}, {x: 0.132716049, y: null}, {x: 0.227699531, y: null}, {x: 0.069767442, y: null}, {x: 0.094230769, y: null}, {x: 0.017931034, y: null}, {x: 0.075027996, y: null}, {x: 0.136291601, y: null}, {x: 0.089648799, y: null}, {x: 0.069212411, y: null}, {x: 0.094409938, y: null}, {x: 0.025657071, y: null}, {x: 0.060321716, y: null}, {x: 0.0590743, y: null}, {x: 0.267729084, y: null}, {x: 0.083010904, y: null}, {x: 0.075286416, y: null}, {x: 0.085882984, y: null}, {x: 0.208118081, y: null}, {x: 0.085723816, y: null}, {x: 0.064118896, y: null}, {x: 0.109077599, y: null}, {x: 0.091924399, y: null}, {x: 0.043564356, y: null}, {x: 0.087671233, y: null}, {x: 0.164005806, y: null}, {x: 0.173177843, y: null}, {x: 0.053217822, y: null}, {x: 0.088706366, y: null}, {x: 0.137301587, y: null}, {x: 0.069672131, y: null}, {x: 0.206932052, y: null}, {x: 0.310514541, y: null}, {x: 0.08650519, y: null}, {x: 0.110561056, y: null}, {x: 0.22125182, y: null}, {x: 0.132335329, y: null}, {x: 0.057953144, y: null}, {x: 0.043621943, y: null}, {x: 0.076346604, y: null}, {x: 0.138438881, y: null}, {x: 0.419213974, y: null}, {x: 0.046464646, y: null}, {x: 0.0, y: null}, {x: 0.079030558, y: null}, {x: 0.263785395, y: null}, {x: 0.061058924, y: null}, {x: 0.207207207, y: null}, {x: 0.0, y: null}, {x: 0.241537054, y: null}, {x: 0.160781367, y: null}, {x: 0.053030303, y: null}, {x: 0.364100926, y: null}, {x: 0.380126183, y: null}, {x: 0.239409805, y: null}, {x: 0.319026549, y: null}, {x: 0.350312779, y: null}, {x: 0.225237449, y: null}, {x: 0.448918269, y: null}, {x: 0.508521601, y: null}, {x: 0.479357798, y: null}, {x: 0.3224149, y: null}, {x: 0.24432105, y: null}, {x: 0.533035714, y: null}, {x: 0.0, y: null}, {x: 0.637288136, y: null}, {x: 0.26092233, y: null}, {x: 0.306257521, y: null}, {x: 0.319186561, y: null}, {x: 0.195939982, y: null}, {x: 0.299299668, y: null}, {x: 0.262352941, y: null}, {x: 0.25443787, y: null}, {x: 0.328278999, y: null}, {x: 0.205414013, y: null}, {x: 0.288444831, y: null}, {x: 0.286445013, y: null}, {x: 0.070126227, y: null}, {x: 0.216596343, y: null}, {x: 0.382257012, y: null}, {x: 0.26707132, y: null}, {x: 0.0, y: null}, {x: 0.066487576, y: 3617.0713}, {x: 0.115537849, y: null}, {x: 0.041635688, y: null}, {x: 0.080174927, y: null}, {x: 0.01407212, y: null}, {x: 0.011082694, y: null}, {x: 0.014285714, y: null}, {x: 0.067328918, y: null}, {x: 0.01787234, y: null}, {x: 0.122308355, y: null}, {x: 0.043723554, y: null}, {x: 0.016129032, y: null}, {x: 0.0, y: null}, {x: 0.115507049, y: null}, {x: 0.04434907, y: null}, {x: 0.095505618, y: null}, {x: 0.0, y: null}, {x: 0.026545808, y: null}, {x: 0.0, y: null}, {x: 0.114595211, y: null}, {x: 0.106827025, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.168466523, y: null}, {x: 0.224159402, y: null}, {x: 0.010598504, y: null}, {x: 0.188047809, y: null}, {x: 0.027922385, y: null}, {x: 0.171848502, y: 21.541675}, {x: 0.193248945, y: null}, {x: 0.0, y: null}, {x: 0.116096866, y: null}, {x: 0.205895901, y: null}, {x: 0.0, y: null}, {x: 0.039182993, y: null}, {x: 0.011422045, y: null}, {x: 0.015063731, y: null}, {x: 0.0, y: null}, {x: 0.031298905, y: null}, {x: 0.067066521, y: null}, {x: 0.0, y: null}, {x: 0.136803874, y: null}, {x: 0.090263268, y: null}, {x: 0.090269151, y: null}, {x: 0.071390231, y: null}, {x: 0.075892857, y: null}, {x: 0.061668682, y: null}, {x: 0.025142857, y: null}, {x: 0.147532729, y: null}, {x: 0.058736059, y: null}, {x: 0.234347048, y: null}, {x: 0.019691325, y: null}, {x: 0.042836041, y: null}, {x: 0.054054054, y: null}, {x: 0.128456221, y: null}, {x: 0.04283054, y: null}, {x: 0.0, y: null}, {x: 0.011235955, y: null}, {x: 0.076626506, y: null}, {x: 0.0, y: null}, {x: 0.154471545, y: null}, {x: 0.04835924, y: null}, {x: 0.211058665, y: null}, {x: 0.000751315, y: null}, {x: 0.0, y: 0.021042}, {x: 0.01244168, y: null}, {x: 0.015780731, y: null}, {x: 0.003205128, y: null}, {x: 0.041433371, y: null}, {x: 0.136166522, y: null}, {x: 0.060869565, y: null}, {x: 0.122555411, y: null}, {x: 0.031631919, y: null}, {x: 0.13753988, y: null}, {x: 0.020641356, y: null}, {x: 0.030268418, y: null}, {x: 0.028318584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055288462, y: null}, {x: 0.0, y: null}, {x: 0.023419204, y: null}, {x: 0.061333333, y: null}, {x: 0.056431535, y: null}, {x: 0.012683578, y: null}, {x: 0.100056211, y: null}, {x: 0.041463415, y: null}, {x: 0.067366579, y: null}, {x: 0.004819277, y: null}, {x: 0.020833333, y: null}, {x: 0.024445708, y: null}, {x: 0.014472777, y: null}, {x: 0.046162403, y: null}, {x: 0.00273224, y: null}, {x: 0.029723992, y: null}, {x: 0.099346405, y: null}, {x: 0.112621359, y: null}, {x: 0.090563429, y: null}, {x: 0.0, y: null}, {x: 0.089023773, y: null}, {x: 0.004582485, y: null}, {x: 0.035049288, y: null}, {x: 0.058823529, y: null}, {x: 0.003511236, y: null}, {x: 0.057321773, y: null}, {x: 0.080176211, y: null}, {x: 0.033033033, y: null}, {x: 0.098484848, y: null}, {x: 0.10243701, y: null}, {x: 0.00933553, y: null}, {x: 0.0, y: null}, {x: 0.096503497, y: null}, {x: 0.079427726, y: null}, {x: 0.076479076, y: null}, {x: 0.491942324, y: null}, {x: 0.398843931, y: null}, {x: 0.319482918, y: null}, {x: 0.776713338, y: null}, {x: 0.502976191, y: null}, {x: 0.549869905, y: null}, {x: 0.84375, y: null}, {x: 0.741132076, y: null}, {x: 0.851528384, y: null}, {x: 0.848380427, y: null}, {x: 0.901129944, y: null}, {x: 0.797481637, y: null}, {x: 0.910585817, y: null}, {x: 0.904982619, y: null}, {x: 0.668621701, y: null}, {x: 0.795454546, y: null}, {x: 0.624051372, y: null}, {x: 0.853749418, y: null}, {x: 0.783849918, y: null}, {x: 0.484526967, y: null}, {x: 0.789579158, y: null}, {x: 0.809848485, y: null}, {x: 0.761339551, y: null}, {x: 0.731147541, y: null}, {x: 0.478682171, y: null}, {x: 0.19012605, y: null}, {x: 0.552168022, y: null}, {x: 0.657407407, y: null}, {x: 0.464079273, y: null}, {x: 0.331395349, y: null}, {x: 0.721046077, y: null}, {x: 0.621012101, y: null}, {x: 0.978417266, y: null}, {x: 0.851948052, y: null}, {x: 0.786802031, y: null}, {x: 0.976299376, y: null}, {x: 0.993265993, y: null}, {x: 0.879605827, y: null}, {x: 0.867587327, y: null}, {x: 0.611304348, y: null}, {x: 0.784980745, y: null}, {x: 0.832241153, y: null}, {x: 0.605659026, y: null}, {x: 0.391104295, y: null}, {x: 0.544887781, y: null}, {x: 0.579019541, y: null}, {x: 0.6493756, y: null}, {x: 0.854868341, y: null}, {x: 0.792165749, y: null}, {x: 0.619640387, y: null}, {x: 0.848758465, y: null}, {x: 0.482758621, y: null}, {x: 0.844183565, y: null}, {x: 0.652783867, y: null}, {x: 0.805350554, y: null}, {x: 0.858851675, y: null}, {x: 0.924479167, y: null}, {x: 0.961275626, y: null}, {x: 0.985457656, y: null}, {x: 0.949265688, y: null}, {x: 0.922929936, y: null}, {x: 0.871024735, y: null}, {x: 0.871236684, y: null}, {x: 1.0, y: null}, {x: 0.561518325, y: null}, {x: 0.309341501, y: null}, {x: 0.708148148, y: null}, {x: 0.692118227, y: null}, {x: 0.671621622, y: null}, {x: 0.328690808, y: null}, {x: 0.669160432, y: null}, {x: 0.618478944, y: null}, {x: 0.464380826, y: null}, {x: 0.142857143, y: null}, {x: 0.25798212, y: null}, {x: 0.182625483, y: null}, {x: 0.070806732, y: null}, {x: 0.299707602, y: null}, {x: 0.285714286, y: null}, {x: 0.105164904, y: null}, {x: 0.255273121, y: null}, {x: 0.111969112, y: null}, {x: 0.033960293, y: null}, {x: 0.071979434, y: null}, {x: 0.10403397, y: null}, {x: 0.119521912, y: null}, {x: 0.131091284, y: null}, {x: 0.070151921, y: null}, {x: 0.07823741, y: null}, {x: 0.061776062, y: null}, {x: 0.072761194, y: null}, {x: 0.032214765, y: null}, {x: 0.107628004, y: null}, {x: 0.099062134, y: null}, {x: 0.039408867, y: null}, {x: 0.084408602, y: null}, {x: 0.208797032, y: null}, {x: 0.0, y: null}, {x: 0.114045159, y: null}, {x: 0.231069477, y: null}, {x: 0.028325123, y: null}, {x: 0.110132159, y: null}, {x: 0.060983199, y: null}, {x: 0.090592334, y: null}, {x: 0.020075758, y: null}, {x: 0.197417967, y: null}, {x: 0.218104817, y: null}, {x: 0.11627907, y: null}, {x: 0.034393809, y: null}, {x: 0.044551062, y: null}, {x: 0.247531271, y: null}, {x: 0.041696113, y: null}, {x: 0.03030303, y: null}, {x: 0.126549964, y: null}, {x: 0.094280608, y: null}, {x: 0.04178273, y: null}, {x: 0.06168446, y: null}, {x: 0.082235785, y: null}, {x: 0.062121212, y: null}, {x: 0.164795689, y: null}, {x: 0.194368132, y: null}, {x: 0.052581715, y: null}, {x: 0.461538462, y: null}, {x: 0.02002584, y: null}, {x: 0.0, y: null}, {x: 0.018734388, y: null}, {x: 0.098822325, y: null}, {x: 0.107617896, y: null}, {x: 0.160372732, y: null}, {x: 0.114635252, y: null}, {x: 0.152927121, y: null}, {x: 0.109589041, y: null}, {x: 0.232016211, y: null}, {x: 0.058823529, y: null}, {x: 0.0, y: null}, {x: 0.091782284, y: null}, {x: 0.146581197, y: null}, {x: 0.020706456, y: null}, {x: 0.000971817, y: null}, {x: 0.027093596, y: null}, {x: 0.129917658, y: null}, {x: 0.131410256, y: null}, {x: 0.104056437, y: null}, {x: 0.031123139, y: null}, {x: 0.039660057, y: null}, {x: 0.076732673, y: null}, {x: 0.031585597, y: null}, {x: 0.291970803, y: null}, {x: 0.000660502, y: null}, {x: 0.011011011, y: null}, {x: 0.012298558, y: null}, {x: 0.062390543, y: null}, {x: 0.001129944, y: null}, {x: 0.428134557, y: null}, {x: 0.157817109, y: null}, {x: 0.025700935, y: null}, {x: 0.088181818, y: null}, {x: 0.07860262, y: null}, {x: 0.024965956, y: null}, {x: 0.076994867, y: null}, {x: 0.060514372, y: null}, {x: 0.190140845, y: null}, {x: 0.006815366, y: null}, {x: 0.049686848, y: null}, {x: 0.340220386, y: null}, {x: 0.0, y: null}, {x: 0.157366771, y: null}, {x: 0.093249428, y: null}, {x: 0.062756817, y: null}, {x: 0.08699187, y: null}, {x: 0.017415215, y: null}, {x: 0.012691466, y: null}, {x: 0.02600104, y: null}, {x: 0.021117166, y: null}, {x: 0.100055586, y: null}, {x: 0.094315656, y: null}, {x: 0.066437008, y: null}, {x: 0.083569405, y: null}, {x: 0.100716561, y: null}, {x: 0.202319072, y: null}, {x: 0.153669725, y: null}, {x: 0.038064516, y: null}, {x: 0.095583787, y: null}, {x: 0.016042781, y: null}, {x: 0.018318966, y: null}, {x: 0.259567388, y: null}, {x: 0.070686071, y: null}, {x: 0.053818182, y: null}, {x: 0.039195637, y: null}, {x: 0.152311877, y: null}, {x: 0.061298077, y: null}, {x: 0.065064478, y: null}, {x: 0.059433962, y: null}, {x: 0.069084629, y: null}, {x: 0.02417962, y: null}, {x: 0.127639156, y: null}, {x: 0.130653266, y: null}, {x: 0.252906977, y: null}, {x: 0.037284895, y: null}, {x: 0.271126761, y: null}, {x: 0.04446461, y: null}, {x: 0.438220758, y: null}, {x: 0.224897541, y: null}, {x: 0.074432093, y: null}, {x: 0.236148956, y: null}, {x: 0.398945519, y: null}, {x: 0.211764706, y: null}, {x: 0.015025042, y: null}, {x: 0.076526225, y: null}, {x: 0.104130809, y: null}, {x: 0.087035358, y: null}, {x: 0.039270687, y: null}, {x: 0.026011561, y: null}, {x: 0.049031477, y: null}, {x: 0.024727992, y: null}, {x: 0.530139104, y: null}, {x: 0.04389313, y: null}, {x: 0.010638298, y: null}, {x: 0.032840723, y: null}, {x: 0.031652989, y: null}, {x: 0.09512761, y: null}, {x: 0.142121524, y: null}, {x: 0.0, y: null}, {x: 0.241830065, y: null}, {x: 0.451451452, y: null}, {x: 0.054270882, y: null}, {x: 0.148351648, y: null}, {x: 0.180206795, y: null}, {x: 0.428433735, y: null}, {x: 0.254112706, y: null}, {x: 0.0, y: null}, {x: 0.436298077, y: null}, {x: 0.147177419, y: null}, {x: 0.556331878, y: null}, {x: 0.434986334, y: null}, {x: 0.62111293, y: null}, {x: 0.233716475, y: null}, {x: 0.292682927, y: null}, {x: 0.327024185, y: null}, {x: 0.431118314, y: null}, {x: 0.302603037, y: null}, {x: 0.497847358, y: null}, {x: 0.317375887, y: null}, {x: 0.230225989, y: null}, {x: 0.254545455, y: null}, {x: 0.576712329, y: null}, {x: 0.271746945, y: null}, {x: 0.45505618, y: null}, {x: 0.319502075, y: null}, {x: 0.296660118, y: null}, {x: 0.430868167, y: null}, {x: 0.389933628, y: null}, {x: 0.332575758, y: null}, {x: 0.247718383, y: null}, {x: 0.37260592, y: null}, {x: 0.337327189, y: null}, {x: 0.28358209, y: null}, {x: 0.374579125, y: null}, {x: 0.206666667, y: null}, {x: 0.182298547, y: null}, {x: 0.238975818, y: null}, {x: 0.484057971, y: null}, {x: 0.516728625, y: null}, {x: 0.291262136, y: null}, {x: 0.317335945, y: null}, {x: 0.322939866, y: null}, {x: 0.327349525, y: null}, {x: 0.406193078, y: null}, {x: 0.378563284, y: null}, {x: 0.183486239, y: null}, {x: 0.824340528, y: null}, {x: 0.453324379, y: null}, {x: 0.362804878, y: null}, {x: 0.425986842, y: null}, {x: 0.425774878, y: null}, {x: 0.354102406, y: null}, {x: 0.288625904, y: null}, {x: 0.576019778, y: null}, {x: 0.331848552, y: null}, {x: 0.576506955, y: null}, {x: 0.394610202, y: null}, {x: 0.306148055, y: null}, {x: 0.795580111, y: null}, {x: 0.537383178, y: null}, {x: 0.371278459, y: null}, {x: 0.440585009, y: null}, {x: 0.647199047, y: null}, {x: 0.536860364, y: null}, {x: 0.551282051, y: null}, {x: 0.468823994, y: null}, {x: 0.0, y: null}, {x: 0.425758819, y: null}, {x: 0.61423651, y: null}, {x: 0.47319933, y: null}, {x: 0.360818351, y: null}, {x: 0.31202046, y: null}, {x: 0.40386016, y: null}, {x: 0.332650972, y: null}, {x: 0.344453711, y: null}, {x: 0.335353535, y: null}, {x: 0.40886076, y: null}, {x: 0.625598086, y: null}, {x: 0.323529412, y: null}, {x: 0.429442509, y: null}, {x: 0.764770241, y: null}, {x: 0.481530343, y: null}, {x: 0.342256214, y: null}, {x: 0.304247104, y: null}, {x: 0.317724933, y: null}, {x: 0.621507197, y: null}, {x: 0.432989691, y: null}, {x: 0.282258065, y: null}, {x: 0.489719626, y: null}, {x: 0.410749834, y: null}, {x: 0.577118644, y: null}, {x: 0.278816199, y: null}, {x: 0.408577878, y: null}, {x: 0.529881995, y: null}, {x: 0.630111524, y: null}, {x: 0.388148148, y: null}, {x: 0.373713381, y: null}, {x: 0.660633484, y: null}, {x: 0.609332113, y: null}, {x: 0.188295165, y: null}, {x: 0.418831169, y: null}, {x: 0.444444444, y: null}, {x: 0.335466179, y: null}, {x: 0.175656985, y: null}, {x: 0.110909091, y: null}, {x: 0.311409396, y: null}, {x: 0.141258741, y: null}, {x: 0.120588235, y: null}, {x: 0.339648173, y: null}, {x: 0.167492567, y: null}, {x: 0.17802645, y: null}, {x: 0.161595673, y: null}, {x: 0.167664671, y: null}, {x: 0.227202473, y: null}, {x: 0.081447964, y: null}, {x: 0.145405888, y: null}, {x: 0.151515152, y: null}, {x: 0.091139241, y: null}, {x: 0.24270073, y: null}, {x: 0.144736842, y: null}, {x: 0.052714398, y: null}, {x: 0.363675958, y: null}, {x: 0.21564482, y: null}, {x: 0.290950745, y: null}, {x: 0.341207349, y: null}, {x: 0.566775244, y: null}, {x: 0.2477842, y: null}, {x: 0.25111309, y: null}, {x: 0.126646403, y: null}, {x: 0.213203463, y: null}, {x: 0.124174373, y: null}, {x: 0.121562952, y: null}, {x: 0.06097561, y: null}, {x: 0.326802835, y: null}, {x: 0.131782946, y: null}, {x: 0.109284333, y: null}, {x: 0.248421053, y: null}, {x: 0.052206339, y: null}, {x: 0.098901099, y: 7.2}, {x: 0.119533528, y: null}, {x: 0.170608108, y: null}, {x: 0.1875, y: null}, {x: 0.193760263, y: null}, {x: 0.832089552, y: null}, {x: 0.192271442, y: null}, {x: 0.881118881, y: null}, {x: 0.129524887, y: null}, {x: 0.022099448, y: null}, {x: 0.159090909, y: null}, {x: 0.0, y: null}, {x: 0.295384615, y: null}, {x: 0.105643994, y: 766.04}, {x: 0.294324166, y: 273.784}, {x: 0.099509804, y: null}, {x: 0.974358974, y: null}, {x: 0.920913884, y: null}, {x: 0.089480048, y: 2.5375}, {x: 0.804804805, y: null}, {x: 0.770975057, y: 0.473}, {x: 0.524307692, y: null}, {x: 0.817708333, y: null}, {x: 0.662735849, y: null}, {x: 0.534988713, y: null}, {x: 0.737089202, y: null}, {x: 0.484450587, y: 3.82795}, {x: 0.885714286, y: null}, {x: 0.62562396, y: null}, {x: 0.755060729, y: null}, {x: 0.497790055, y: null}, {x: 0.710113339, y: null}, {x: 0.0, y: null}, {x: 0.762780012, y: null}, {x: 0.566579635, y: null}, {x: 0.878341517, y: null}, {x: 0.726735598, y: null}, {x: 0.755205402, y: null}, {x: 0.862957938, y: null}, {x: 0.633333333, y: null}, {x: 0.731067961, y: 0.17529}, {x: 0.668428005, y: null}, {x: 0.570669501, y: null}, {x: 0.481553398, y: null}, {x: 0.559139785, y: null}, {x: 0.556708673, y: null}, {x: 0.293277311, y: null}, {x: 0.728453365, y: null}, {x: 0.491496599, y: 16.942}, {x: 0.398455599, y: null}, {x: 0.310460251, y: null}, {x: 0.047406082, y: null}, {x: 0.012482663, y: null}, {x: 0.06820365, y: null}, {x: 0.058823529, y: null}, {x: 0.036275695, y: null}, {x: 0.098478066, y: null}, {x: 0.141903172, y: null}, {x: 0.0, y: null}, {x: 0.038062284, y: null}, {x: 0.018664752, y: null}, {x: 0.003933137, y: null}, {x: 0.0, y: null}, {x: 0.045992116, y: null}, {x: 0.22675737, y: null}, {x: 0.120762712, y: null}, {x: 0.128514056, y: null}, {x: 0.391908976, y: null}, {x: 0.143407122, y: null}, {x: 0.288095238, y: null}, {x: 0.351945855, y: null}, {x: 0.18487395, y: null}, {x: 0.104551046, y: null}, {x: 0.171851852, y: null}, {x: 0.29661017, y: null}, {x: 0.888888889, y: null}, {x: 0.90530303, y: null}, {x: 0.029115342, y: null}, {x: 0.12312812, y: null}, {x: 0.28343667, y: null}, {x: 0.131437356, y: null}, {x: 0.07436919, y: null}, {x: 0.71656051, y: null}, {x: 0.605143722, y: null}, {x: 0.448079659, y: null}, {x: 0.822801303, y: null}, {x: 0.147282291, y: null}, {x: 0.0, y: null}, {x: 0.244525547, y: null}, {x: 0.126931567, y: null}, {x: 0.765264586, y: null}, {x: 0.411953042, y: null}, {x: 0.0625, y: null}, {x: 0.642748092, y: null}, {x: 0.259958071, y: null}, {x: 0.210643016, y: null}, {x: 0.372171946, y: null}, {x: 1.0, y: null}, {x: 0.320119671, y: null}, {x: 0.756920999, y: null}, {x: 1.0, y: null}, {x: 0.315023164, y: null}, {x: 0.270172258, y: null}, {x: 0.224815725, y: null}, {x: 0.068907563, y: null}, {x: 0.522633745, y: null}, {x: 0.314629259, y: 180.08110000000002}, {x: 0.923857868, y: null}, {x: 0.221774194, y: null}, {x: 0.367239102, y: null}, {x: 0.386010363, y: null}, {x: 0.844854674, y: null}, {x: 0.21399177, y: null}, {x: 0.315594974, y: null}, {x: 0.541598695, y: null}, {x: 0.376772451, y: null}, {x: 0.193430657, y: null}, {x: 0.389344262, y: null}, {x: 0.224582701, y: null}, {x: 0.777003484, y: null}, {x: 0.44488978, y: null}, {x: 0.33748702, y: null}, {x: 0.300083126, y: null}, {x: 0.737172775, y: null}, {x: 0.516766982, y: null}, {x: 0.430693069, y: null}, {x: 0.246899662, y: null}, {x: 0.427958834, y: null}, {x: 0.330396476, y: null}, {x: 0.975853946, y: null}, {x: 0.724309392, y: null}, {x: 0.821090047, y: null}, {x: 0.819124424, y: null}, {x: 0.899148658, y: null}, {x: 0.867975626, y: null}, {x: 1.0, y: null}, {x: 0.79163034, y: null}, {x: 0.993857494, y: null}, {x: 0.598896044, y: null}, {x: 1.0, y: null}, {x: 0.896551724, y: null}, {x: 0.599669422, y: null}, {x: 0.96039604, y: null}, {x: 0.494479495, y: null}, {x: 0.318411552, y: null}, {x: 0.261329305, y: null}, {x: 0.358070501, y: null}, {x: 0.425316456, y: null}, {x: 0.840485075, y: null}, {x: 0.770919067, y: null}, {x: 0.690140845, y: null}, {x: 0.429850746, y: null}, {x: 0.462167689, y: null}, {x: 0.634565778, y: null}, {x: 0.474806202, y: null}, {x: 0.669588081, y: null}, {x: 0.97705803, y: null}, {x: 1.0, y: null}, {x: 0.693979933, y: null}, {x: 0.957512953, y: null}, {x: 0.937823834, y: null}, {x: 0.844132029, y: null}, {x: 0.544991511, y: null}, {x: 0.590147783, y: null}, {x: 0.774659182, y: null}, {x: 0.401937046, y: null}, {x: 0.83006536, y: null}, {x: 0.90625, y: null}, {x: 0.98509687, y: null}, {x: 0.934607646, y: null}, {x: 0.947420635, y: null}, {x: 0.936672968, y: null}, {x: 1.0, y: null}, {x: 0.910276074, y: null}, {x: 0.973387097, y: null}, {x: 0.914236707, y: null}, {x: 0.97542735, y: null}, {x: 0.957678356, y: null}, {x: 0.853249476, y: null}, {x: 0.962488564, y: null}, {x: 0.903369358, y: null}, {x: 0.994747899, y: null}, {x: 0.975, y: null}, {x: 0.822168088, y: null}, {x: 0.959434822, y: null}, {x: 0.798618684, y: null}, {x: 0.859937402, y: null}, {x: 0.978483607, y: null}, {x: 0.985623003, y: null}, {x: 1.0, y: null}, {x: 0.843520782, y: null}, {x: 0.913366337, y: null}, {x: 0.92920354, y: null}, {x: 1.0, y: null}, {x: 0.957605985, y: null}, {x: 0.933854908, y: null}, {x: 0.982142857, y: null}, {x: 0.95256167, y: null}, {x: 0.98359375, y: null}, {x: 0.961248655, y: null}, {x: 0.898911353, y: null}, {x: 0.899676375, y: null}, {x: 0.927583937, y: null}, {x: 0.3, y: null}, {x: 0.206896552, y: null}, {x: 0.361506276, y: null}, {x: 0.38247012, y: null}, {x: 0.893382353, y: null}, {x: 0.579943899, y: null}, {x: 0.887921654, y: null}, {x: 0.419287212, y: null}, {x: 0.325657895, y: null}, {x: 0.269982238, y: null}, {x: 0.559545183, y: null}, {x: 0.216145833, y: null}, {x: 0.658682635, y: null}, {x: 0.705970149, y: null}, {x: 0.54945055, y: null}, {x: 0.697727273, y: null}, {x: 0.524806202, y: null}, {x: 0.793456033, y: null}, {x: 0.835274542, y: null}, {x: 0.98498749, y: null}, {x: 0.913072329, y: null}, {x: 0.939973615, y: null}, {x: 0.690938511, y: null}, {x: 0.955284553, y: null}, {x: 1.0, y: null}, {x: 0.904261206, y: null}, {x: 0.801587302, y: null}, {x: 0.630094044, y: null}, {x: 0.942454492, y: null}, {x: 0.974842767, y: null}, {x: 1.0, y: null}, {x: 0.946666667, y: null}, {x: 0.988717949, y: null}, {x: 0.89332004, y: null}, {x: 1.0, y: null}, {x: 0.88372093, y: null}, {x: 0.994126285, y: null}, {x: 0.95996732, y: null}, {x: 0.925461741, y: null}, {x: 0.865158371, y: null}, {x: 0.935275081, y: null}, {x: 0.988372093, y: null}, {x: 0.711286089, y: null}, {x: 0.954587581, y: null}, {x: 0.129783694, y: null}, {x: 0.8126294, y: null}, {x: 0.746190684, y: null}, {x: 0.768374165, y: null}, {x: 0.536231884, y: null}, {x: 0.887840671, y: null}, {x: 0.823708207, y: null}, {x: 0.989473684, y: null}, {x: 0.813333333, y: null}, {x: 0.954044118, y: null}, {x: 0.989690722, y: null}, {x: 1.0, y: null}, {x: 0.962962963, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.99339498, y: null}, {x: 0.953519256, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.936858721, y: null}, {x: 0.970588235, y: null}, {x: 0.990749306, y: null}, {x: 1.0, y: null}, {x: 0.964849354, y: null}, {x: 0.977808599, y: null}, {x: 1.0, y: null}, {x: 0.955991875, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.958022388, y: null}, {x: 0.858044164, y: null}, {x: 0.743494424, y: null}, {x: 0.921363953, y: null}, {x: 0.954173486, y: null}, {x: 0.760252366, y: null}, {x: 0.578364566, y: null}, {x: 0.738947368, y: null}, {x: 0.921259843, y: null}, {x: 0.971919771, y: null}, {x: 0.561359867, y: null}, {x: 0.516802906, y: null}, {x: 0.537148594, y: null}, {x: 0.618548049, y: null}, {x: 0.225868726, y: null}, {x: 0.101364522, y: null}, {x: 0.117318436, y: null}, {x: 0.266554904, y: null}, {x: 0.05338809, y: null}, {x: 0.163829787, y: null}, {x: 0.012658228, y: null}, {x: 0.355844156, y: null}, {x: 0.459930314, y: null}, {x: 0.370437956, y: null}, {x: 0.464351006, y: null}, {x: 0.405940594, y: null}, {x: 0.515625, y: null}, {x: 0.740243902, y: null}, {x: 0.75631769, y: null}, {x: 0.864098837, y: null}, {x: 0.806288602, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.979397781, y: null}, {x: 1.0, y: null}, {x: 0.987179487, y: null}, {x: 0.977321049, y: null}, {x: 0.981017192, y: null}, {x: 0.963066854, y: null}, {x: 0.981376518, y: null}, {x: 0.981868132, y: null}, {x: 0.850109409, y: null}, {x: 1.0, y: null}, {x: 0.988310929, y: null}, {x: 1.0, y: null}, {x: 0.961802903, y: null}, {x: 0.56514658, y: null}, {x: 0.939329051, y: null}, {x: 0.341866877, y: null}, {x: 0.607954546, y: null}, {x: 0.128, y: null}, {x: 0.870377288, y: null}, {x: 0.798758865, y: null}, {x: 0.389911384, y: null}, {x: 0.830703013, y: null}, {x: 0.443678161, y: null}, {x: 0.83125, y: null}, {x: 0.385527877, y: null}, {x: 0.509274874, y: null}, {x: 0.379495027, y: null}, {x: 0.365561694, y: null}, {x: 0.126103405, y: null}, {x: 0.209809264, y: null}, {x: 0.209937888, y: null}, {x: 0.491907108, y: null}, {x: 0.4296741, y: null}, {x: 0.498538012, y: null}, {x: 0.167065582, y: null}, {x: 0.191530318, y: null}, {x: 0.268913858, y: null}, {x: 0.159127195, y: null}, {x: 0.36949783, y: null}, {x: 0.091051805, y: null}, {x: 0.162550259, y: null}, {x: 0.295734597, y: null}, {x: 0.317002882, y: null}, {x: 0.270323213, y: null}, {x: 0.177142857, y: null}, {x: 0.163375224, y: null}, {x: 0.557163531, y: null}, {x: 0.551538837, y: null}, {x: 0.437726723, y: null}, {x: 0.626188735, y: null}, {x: 0.718019257, y: null}, {x: 0.506273063, y: null}, {x: 0.477842004, y: null}, {x: 0.298634812, y: null}, {x: 0.455544456, y: null}, {x: 0.171648988, y: null}, {x: 0.216971545, y: null}, {x: 0.250426864, y: null}, {x: 0.452222222, y: null}, {x: 0.409930716, y: null}, {x: 0.721615721, y: null}, {x: 0.42962963, y: null}, {x: 0.227848101, y: null}, {x: 0.405535499, y: null}, {x: 0.398365679, y: null}, {x: 0.344234079, y: null}, {x: 0.41503268, y: null}, {x: 0.251824818, y: null}, {x: 0.040609137, y: null}, {x: 0.072625698, y: null}, {x: 0.434724092, y: null}, {x: 0.206680585, y: null}, {x: 0.185421995, y: null}, {x: 0.366317793, y: null}, {x: 0.191176471, y: null}, {x: 0.015325671, y: null}, {x: 0.209486166, y: null}, {x: 0.125948407, y: null}, {x: 0.167553192, y: null}, {x: 0.079107505, y: null}, {x: 0.302295918, y: null}, {x: 0.151552795, y: null}, {x: 0.313708999, y: null}, {x: 0.460260116, y: null}, {x: 0.259026688, y: null}, {x: 0.264691598, y: null}, {x: 0.582743363, y: null}, {x: 0.232186732, y: null}, {x: 0.959863946, y: null}, {x: 0.541843425, y: null}, {x: 0.418699187, y: null}, {x: 0.882226981, y: null}, {x: 0.593684211, y: null}, {x: 0.383096367, y: null}, {x: 0.776843467, y: null}, {x: 0.596029777, y: null}, {x: 0.928838951, y: null}, {x: 0.747878788, y: null}, {x: 0.948790896, y: null}, {x: 0.689948893, y: null}, {x: 0.703241895, y: null}, {x: 0.772727273, y: null}, {x: 0.41819464, y: null}, {x: 0.603074141, y: null}, {x: 0.89, y: null}, {x: 0.469309463, y: null}, {x: 0.589952769, y: null}, {x: 0.449929478, y: null}, {x: 0.979653353, y: null}, {x: 0.777310924, y: null}, {x: 0.878103838, y: null}, {x: 0.809756098, y: null}, {x: 0.921372032, y: null}, {x: 0.989100817, y: null}, {x: 0.971918877, y: null}, {x: 1.0, y: null}, {x: 0.991647684, y: null}, {x: 1.0, y: null}, {x: 0.982857143, y: null}, {x: 0.976762505, y: null}, {x: 0.645517241, y: null}, {x: 0.817280453, y: null}, {x: 0.987250996, y: null}, {x: 0.932067202, y: null}, {x: 0.815899582, y: null}, {x: 0.884727911, y: null}, {x: 1.0, y: null}, {x: 0.827464789, y: null}, {x: 0.785265049, y: null}, {x: 0.984095427, y: null}, {x: 0.946226415, y: null}, {x: 0.902363823, y: null}, {x: 0.664714495, y: null}, {x: 0.379110252, y: null}, {x: 0.38974359, y: 0.028}, {x: 0.734312417, y: null}, {x: 0.87109375, y: null}, {x: 0.385919166, y: null}, {x: 0.906862745, y: null}, {x: 0.933083957, y: null}, {x: 0.824945295, y: null}, {x: 0.926671459, y: null}, {x: 0.790364583, y: null}, {x: 0.654173765, y: null}, {x: 0.839228296, y: null}, {x: 0.0, y: 1.660842}, {x: 0.798481712, y: null}, {x: 0.796033994, y: null}, {x: 0.746153846, y: null}, {x: 0.2675, y: null}, {x: 0.596283784, y: null}, {x: 0.918080116, y: null}, {x: 0.729691877, y: null}, {x: 0.81205165, y: null}, {x: 0.876728111, y: null}, {x: 0.687378641, y: null}, {x: 0.607526882, y: null}, {x: 0.647450111, y: null}, {x: 0.378147029, y: null}, {x: 0.194011976, y: null}, {x: 0.465058236, y: null}, {x: 0.709502708, y: null}, {x: 0.558080808, y: null}, {x: 0.338675214, y: null}, {x: 0.747587231, y: null}, {x: 0.185361973, y: null}, {x: 0.445157152, y: null}, {x: 0.445026178, y: null}, {x: 0.360772358, y: null}, {x: 0.440618956, y: null}, {x: 0.191694833, y: null}, {x: 0.274709302, y: null}, {x: 0.324046921, y: null}, {x: 0.681192661, y: null}, {x: 0.481961147, y: null}, {x: 0.404069767, y: null}, {x: 0.317683881, y: null}, {x: 0.44, y: null}, {x: 0.537572254, y: null}, {x: 0.398268398, y: null}, {x: 0.52345679, y: null}, {x: 0.405707196, y: null}, {x: 0.097222222, y: null}, {x: 0.05942275, y: null}, {x: 0.344021376, y: null}, {x: 0.577702703, y: null}, {x: 0.512280702, y: null}, {x: 0.570873786, y: null}, {x: 0.466152999, y: null}, {x: 0.381076389, y: null}, {x: 0.690409683, y: null}, {x: 0.448402948, y: null}, {x: 0.688186813, y: null}, {x: 0.490853659, y: null}, {x: 0.89245157, y: null}, {x: 0.707109737, y: null}, {x: 0.726199262, y: null}, {x: 0.825484765, y: null}, {x: 0.553496504, y: null}, {x: 0.575206612, y: null}, {x: 0.50310559, y: null}, {x: 0.588754135, y: null}, {x: 0.088575096, y: null}, {x: 0.127673364, y: null}, {x: 0.185185185, y: null}, {x: 0.533102553, y: null}, {x: 0.227772228, y: null}, {x: 0.121306376, y: null}, {x: 0.122241087, y: null}, {x: 0.190476191, y: null}, {x: 0.017906336, y: null}, {x: 0.094555874, y: null}, {x: 0.085714286, y: null}, {x: 0.092838196, y: null}, {x: 0.294678316, y: null}, {x: 0.178243775, y: null}, {x: 0.193396226, y: null}, {x: 0.212290503, y: null}, {x: 0.286282306, y: null}, {x: 0.10206995, y: null}, {x: 0.75, y: null}, {x: 0.366568915, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.656, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.25, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.787234043, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.067961165, y: null}, {x: 0.043778802, y: null}, {x: 0.198767334, y: null}, {x: 0.038544825, y: null}, {x: 0.084019769, y: null}, {x: 0.229545455, y: null}, {x: 0.075669383, y: null}, {x: 0.117296223, y: null}, {x: 0.120103093, y: null}, {x: 0.157287157, y: null}, {x: 0.328542095, y: null}, {x: 0.078231293, y: null}, {x: 0.061336254, y: null}, {x: 0.012320329, y: null}, {x: 0.121134021, y: null}, {x: 0.194891202, y: null}, {x: 0.020657995, y: null}, {x: 0.096997691, y: null}, {x: 0.038580247, y: null}, {x: 0.164879357, y: null}, {x: 0.102564103, y: null}, {x: 0.179721288, y: null}, {x: 0.055619266, y: null}, {x: 0.026180698, y: null}, {x: 0.101665206, y: null}, {x: 0.04972805, y: null}, {x: 0.02393617, y: null}, {x: 0.150711514, y: null}, {x: 0.03148855, y: null}, {x: 0.106864275, y: null}, {x: 0.0, y: null}, {x: 0.011568123, y: null}, {x: 0.142474019, y: null}, {x: 0.053874539, y: null}, {x: 0.227558605, y: null}, {x: 0.004094631, y: null}, {x: 0.255691769, y: null}, {x: 0.033484163, y: null}, {x: 0.160662123, y: null}, {x: 0.207201889, y: null}, {x: 0.308992563, y: null}, {x: 0.094020173, y: null}, {x: 0.158730159, y: null}, {x: 0.109574468, y: null}, {x: 0.127981385, y: null}, {x: 0.318181818, y: null}, {x: 0.263042525, y: null}, {x: 0.088314486, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020628684, y: null}, {x: 0.0, y: null}, {x: 0.319881054, y: null}, {x: 0.088631985, y: null}, {x: 0.274529237, y: null}, {x: 0.274153997, y: null}, {x: 0.245138889, y: null}, {x: 0.320234114, y: null}, {x: 0.181594488, y: null}, {x: 0.14953271, y: null}, {x: 0.523809524, y: null}, {x: 0.264473684, y: null}, {x: 0.193032015, y: null}, {x: 0.253029223, y: null}, {x: 0.323599053, y: null}, {x: 0.214572193, y: null}, {x: 0.364973262, y: null}, {x: 0.663766633, y: null}, {x: 0.272655323, y: null}, {x: 0.377840909, y: null}, {x: 0.23707035, y: null}, {x: 0.278253039, y: null}, {x: 0.475390156, y: 626.415468}, {x: 0.306220096, y: null}, {x: 0.635926223, y: null}, {x: 0.394939494, y: null}, {x: 0.612172682, y: null}, {x: 0.124439462, y: null}, {x: 0.083835947, y: null}, {x: 0.181069959, y: null}, {x: 0.064840183, y: null}, {x: 0.404085258, y: null}, {x: 0.388400703, y: null}, {x: 0.630088496, y: 0.316}, {x: 0.496212121, y: 13.296268}, {x: 0.475308642, y: null}, {x: 0.505922166, y: null}, {x: 0.32122905, y: null}, {x: 0.308928571, y: null}, {x: 0.331515812, y: 0.22}, {x: 0.015680324, y: null}, {x: 0.441458733, y: null}, {x: 0.216918429, y: 0.171}, {x: 0.28287708, y: null}, {x: 0.394688645, y: null}, {x: 0.176153846, y: null}, {x: 0.411648569, y: null}, {x: 0.659672131, y: null}, {x: 0.402860548, y: null}, {x: 0.528710726, y: null}, {x: 0.61255116, y: null}, {x: 0.736170213, y: null}, {x: 0.547906317, y: null}, {x: 0.433986102, y: null}, {x: 0.472334683, y: null}, {x: 0.621359223, y: 9.505065}, {x: 0.305333333, y: null}, {x: 0.430954588, y: null}, {x: 0.298128342, y: 3.291023}, {x: 0.367078189, y: null}, {x: 0.264084507, y: null}, {x: 0.234061931, y: null}, {x: 0.761458333, y: null}, {x: 0.297307547, y: null}, {x: 0.17340591, y: null}, {x: 0.036774194, y: null}, {x: 0.097979413, y: null}, {x: 0.176445211, y: null}, {x: 0.26625387, y: null}, {x: 0.100612423, y: null}, {x: 0.128654971, y: null}, {x: 0.182987552, y: null}, {x: 0.168518519, y: null}, {x: 0.018231541, y: null}, {x: 0.243562557, y: null}, {x: 0.143461701, y: null}, {x: 0.13381295, y: null}, {x: 0.146788991, y: null}, {x: 0.200183655, y: null}, {x: 0.071266111, y: null}, {x: 0.384536083, y: null}, {x: 0.305153445, y: null}, {x: 0.068014706, y: null}, {x: 0.125146199, y: null}, {x: 0.222065064, y: null}, {x: 0.201398601, y: null}, {x: 0.113323124, y: null}, {x: 0.203381402, y: null}, {x: 0.422924901, y: null}, {x: 0.065243536, y: null}, {x: 0.069740298, y: null}, {x: 0.060737527, y: null}, {x: 0.145152355, y: null}, {x: 0.026751592, y: null}, {x: 0.104606526, y: null}, {x: 0.031273269, y: null}, {x: 0.014634146, y: null}, {x: 0.10607621, y: null}, {x: 0.069230769, y: null}, {x: 0.055521283, y: null}, {x: 0.114308553, y: null}, {x: 0.038579882, y: null}, {x: 0.030243261, y: null}, {x: 0.114013059, y: null}, {x: 0.092827004, y: null}, {x: 0.0, y: null}, {x: 0.032031593, y: 0.016676}, {x: 0.029350105, y: null}, {x: 0.05678392, y: null}, {x: 0.156293223, y: null}, {x: 0.033269962, y: null}, {x: 0.009922041, y: null}, {x: 0.025949954, y: null}, {x: 0.055891239, y: null}, {x: 0.040254237, y: null}, {x: 0.051546392, y: null}, {x: 0.065263158, y: null}, {x: 0.027417027, y: null}, {x: 0.021676301, y: null}, {x: 0.116839917, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066822978, y: null}, {x: 0.108655617, y: null}, {x: 0.101344364, y: null}, {x: 0.012567325, y: null}, {x: 0.265907569, y: null}, {x: 0.0, y: null}, {x: 0.148509174, y: null}, {x: 0.144740877, y: null}, {x: 0.074492099, y: null}, {x: 0.180823346, y: null}, {x: 0.052456286, y: null}, {x: 0.127344521, y: null}, {x: 0.115686275, y: null}, {x: 0.158480074, y: null}, {x: 0.155059133, y: null}, {x: 0.048954161, y: null}, {x: 0.113152094, y: null}, {x: 0.239414935, y: null}, {x: 0.051219512, y: null}, {x: 0.083287369, y: null}, {x: 0.188967574, y: null}, {x: 0.167602245, y: null}, {x: 0.062605753, y: null}, {x: 0.117283951, y: null}, {x: 0.516375546, y: null}, {x: 0.239130435, y: null}, {x: 0.514261977, y: null}, {x: 0.336241611, y: null}, {x: 0.339873861, y: null}, {x: 0.487028302, y: null}, {x: 0.524076148, y: null}, {x: 0.148271277, y: null}, {x: 0.179429429, y: null}, {x: 0.180811808, y: null}, {x: 0.308267165, y: null}, {x: 0.291991495, y: null}, {x: 0.125, y: null}, {x: 0.307068366, y: null}, {x: 0.196452933, y: null}, {x: 0.252586207, y: null}, {x: 0.674233825, y: null}, {x: 0.807727273, y: null}, {x: 0.43516101, y: null}, {x: 0.717622081, y: null}, {x: 0.363636364, y: null}, {x: 0.696245734, y: null}, {x: 0.513239437, y: null}, {x: 0.148484063, y: null}, {x: 0.092592593, y: null}, {x: 0.296751536, y: null}, {x: 0.161997126, y: null}, {x: 0.202476329, y: null}, {x: 0.217691343, y: null}, {x: 0.111269615, y: null}, {x: 0.324576564, y: null}, {x: 0.305457747, y: null}, {x: 0.202011735, y: null}, {x: 0.170222424, y: null}, {x: 0.015, y: null}, {x: 0.438636364, y: null}, {x: 0.213468014, y: null}, {x: 0.176470588, y: null}, {x: 0.06835206, y: null}, {x: 0.206594539, y: null}, {x: 0.274332649, y: null}, {x: 0.177458034, y: null}, {x: 0.116182573, y: null}, {x: 0.666083916, y: null}, {x: 0.707762557, y: null}, {x: 0.429059181, y: null}, {x: 0.43164557, y: null}, {x: 0.418535127, y: null}, {x: 0.405088063, y: null}, {x: 0.548596112, y: null}, {x: 0.156736939, y: null}, {x: 0.656360424, y: null}, {x: 0.468659595, y: null}, {x: 0.39916318, y: null}, {x: 0.282939189, y: null}, {x: 0.313953488, y: null}, {x: 0.795275591, y: null}, {x: 0.417413572, y: null}, {x: 0.715487383, y: null}, {x: 0.354214123, y: null}, {x: 0.710191083, y: null}, {x: 0.416763679, y: null}, {x: 0.860750361, y: null}, {x: 0.895620876, y: null}, {x: 0.798641137, y: null}, {x: 0.898333333, y: null}, {x: 0.796319018, y: null}, {x: 0.699502488, y: null}, {x: 0.591339648, y: null}, {x: 0.572490706, y: null}, {x: 0.698689956, y: null}, {x: 0.596178344, y: null}, {x: 0.722841226, y: null}, {x: 0.939336493, y: null}, {x: 0.509512485, y: null}, {x: 0.212162162, y: null}, {x: 0.641447368, y: null}, {x: 0.475903615, y: null}, {x: 0.31610338, y: null}, {x: 0.28, y: null}, {x: 0.177543186, y: null}, {x: 0.25378614, y: null}, {x: 0.577710843, y: null}, {x: 0.497363796, y: null}, {x: 0.512087912, y: null}, {x: 0.097472924, y: null}, {x: 0.454545455, y: null}, {x: 0.382633588, y: null}, {x: 0.747435897, y: null}, {x: 0.582763338, y: null}, {x: 0.902116402, y: null}, {x: 0.814298169, y: null}, {x: 0.584115524, y: null}, {x: 0.613583138, y: null}, {x: 0.701947813, y: null}, {x: 0.913123, y: null}, {x: 0.609960828, y: null}, {x: 0.542748918, y: null}, {x: 0.359142607, y: null}, {x: 0.4, y: null}, {x: 0.331447964, y: null}, {x: 0.503777148, y: null}, {x: 0.503669725, y: null}, {x: 0.397594175, y: null}, {x: 0.577444682, y: null}, {x: 0.466273187, y: null}, {x: 0.373517787, y: null}, {x: 0.264816557, y: null}, {x: 0.187901318, y: null}, {x: 0.495422177, y: null}, {x: 0.359107421, y: null}, {x: 0.718476583, y: null}, {x: 0.737869198, y: null}, {x: 0.827111984, y: null}, {x: 0.962343096, y: null}, {x: 0.784593438, y: null}, {x: 0.6621881, y: null}, {x: 0.533774834, y: 563.320881}, {x: 0.712809917, y: null}, {x: 0.751282051, y: null}, {x: 0.677623262, y: null}, {x: 0.4171123, y: null}, {x: 0.374291115, y: null}, {x: 0.623728814, y: null}, {x: 0.640659341, y: null}, {x: 0.640378549, y: null}, {x: 0.612301957, y: null}, {x: 0.514124294, y: null}, {x: 0.364261168, y: null}, {x: 0.592823713, y: null}, {x: 0.384830154, y: null}, {x: 0.288368336, y: null}, {x: 0.560229446, y: null}, {x: 0.161290323, y: null}, {x: 0.558045977, y: null}, {x: 0.362085308, y: null}, {x: 0.346335697, y: null}, {x: 0.758349705, y: null}, {x: 0.216393443, y: null}, {x: 0.56954612, y: null}, {x: 0.582934609, y: null}, {x: 0.72122905, y: null}, {x: 0.290647482, y: null}, {x: 0.440602342, y: null}, {x: 0.569943289, y: null}, {x: 0.305949009, y: null}, {x: 0.164930556, y: null}, {x: 0.077361564, y: null}, {x: 0.029735683, y: null}, {x: 0.208357858, y: null}, {x: 0.134852802, y: null}, {x: 0.067017083, y: null}, {x: 0.183571429, y: null}, {x: 0.158490566, y: null}, {x: 0.016352201, y: null}, {x: 0.114345114, y: null}, {x: 0.061079545, y: null}, {x: 0.040195546, y: null}, {x: 0.10138585, y: null}, {x: 0.251503006, y: null}, {x: 0.142676768, y: null}, {x: 0.075, y: null}, {x: 0.100595632, y: null}, {x: 0.0, y: null}, {x: 0.039182283, y: null}, {x: 0.034046693, y: null}, {x: 0.060550459, y: null}, {x: 0.172104405, y: null}, {x: 0.10206995, y: null}, {x: 0.145962733, y: null}, {x: 0.136382365, y: 58.2}, {x: 0.065300896, y: null}, {x: 0.118259224, y: null}, {x: 0.08449848, y: null}, {x: 0.184141547, y: null}, {x: 0.098861284, y: null}, {x: 0.11920904, y: null}, {x: 0.307359307, y: null}, {x: 0.283287671, y: null}, {x: 0.330129745, y: null}, {x: 0.217668126, y: null}, {x: 0.331989247, y: null}, {x: 0.119749447, y: null}, {x: 0.243478261, y: null}, {x: 0.184416601, y: null}, {x: 0.285163777, y: null}, {x: 0.489977728, y: null}, {x: 0.376275028, y: null}, {x: 0.607532957, y: null}, {x: 0.627457744, y: null}, {x: 0.471323112, y: null}, {x: 0.399323998, y: null}, {x: 0.166774822, y: null}, {x: 0.317904374, y: null}, {x: 0.197849462, y: null}, {x: 0.312109153, y: null}, {x: 0.234982332, y: null}, {x: 0.405090138, y: null}, {x: 0.422535211, y: null}, {x: 0.152892562, y: null}, {x: 0.314542484, y: null}, {x: 0.343944864, y: null}, {x: 0.143106457, y: null}, {x: 0.204736211, y: null}, {x: 0.088293651, y: null}, {x: 0.153590426, y: null}, {x: 0.288182446, y: null}, {x: 0.223561644, y: null}, {x: 0.135736538, y: null}, {x: 0.336538462, y: null}, {x: 0.089147287, y: null}, {x: 0.357524013, y: null}, {x: 0.218418908, y: null}, {x: 0.196135266, y: null}, {x: 0.174641148, y: null}, {x: 0.151532033, y: null}, {x: 0.14653081, y: null}, {x: 0.33042394, y: null}, {x: 0.195134849, y: null}, {x: 0.330195024, y: null}, {x: 0.273209549, y: null}, {x: 0.198507463, y: null}, {x: 0.076923077, y: null}, {x: 0.209351754, y: null}, {x: 0.061674009, y: null}, {x: 0.339228296, y: null}, {x: 0.432848589, y: null}, {x: 0.231901841, y: null}, {x: 0.215733591, y: null}, {x: 0.35840708, y: null}, {x: 0.723303525, y: null}, {x: 0.863775199, y: null}, {x: 0.269912931, y: null}, {x: 0.146327684, y: null}, {x: 0.206043956, y: null}, {x: 0.112693758, y: null}, {x: 0.388300127, y: null}, {x: 0.164356436, y: null}, {x: 0.036382536, y: null}, {x: 0.083769634, y: null}, {x: 0.210912907, y: null}, {x: 0.24656782, y: null}, {x: 0.135524798, y: null}, {x: 0.196440794, y: null}, {x: 0.437565036, y: null}, {x: 0.216939079, y: null}, {x: 0.335243553, y: null}, {x: 0.246590909, y: null}, {x: 0.078651685, y: null}, {x: 0.169191919, y: null}, {x: 0.569558102, y: null}, {x: 0.571766562, y: null}, {x: 0.483412322, y: null}, {x: 0.283746557, y: null}, {x: 0.23183391, y: null}, {x: 0.107407407, y: null}, {x: 0.649247823, y: null}, {x: 0.047979798, y: null}, {x: 0.090831191, y: null}, {x: 0.033767487, y: null}, {x: 0.064516129, y: null}, {x: 0.034904014, y: null}, {x: 0.046498599, y: null}, {x: 0.169464429, y: null}, {x: 0.15323741, y: null}, {x: 0.136671177, y: null}, {x: 0.01056338, y: null}, {x: 0.040816327, y: null}, {x: 0.227436823, y: null}, {x: 0.06150207, y: null}, {x: 0.016949153, y: null}, {x: 0.012979351, y: null}, {x: 0.052207294, y: null}, {x: 0.133512064, y: null}, {x: 0.046461372, y: null}, {x: 0.047107177, y: null}, {x: 0.04003268, y: null}, {x: 0.087699317, y: null}, {x: 0.034632035, y: null}, {x: 0.23402195, y: null}, {x: 0.309536494, y: null}, {x: 0.091117042, y: null}, {x: 0.218282112, y: null}, {x: 0.087459235, y: null}, {x: 0.146341463, y: null}, {x: 0.108806405, y: null}, {x: 0.05298913, y: null}, {x: 0.07495069, y: null}, {x: 0.128454452, y: null}, {x: 0.144308943, y: null}, {x: 0.023470839, y: null}, {x: 0.086061424, y: null}, {x: 0.11173577, y: null}, {x: 0.0, y: null}, {x: 0.04389851, y: null}, {x: 0.041025641, y: null}, {x: 0.022518766, y: null}, {x: 0.056775798, y: null}, {x: 0.094940662, y: null}, {x: 0.180946675, y: null}, {x: 0.127600555, y: null}, {x: 0.109302326, y: null}, {x: 0.190625, y: null}, {x: 0.043201455, y: null}, {x: 0.011371713, y: null}, {x: 0.111055023, y: null}, {x: 0.041469194, y: null}, {x: 0.309850746, y: null}, {x: 0.228867624, y: null}, {x: 0.316171617, y: null}, {x: 0.131147541, y: null}, {x: 0.338160136, y: null}, {x: 0.380246914, y: null}, {x: 0.468481375, y: null}, {x: 0.056133056, y: null}, {x: 0.139410188, y: null}, {x: 0.44945055, y: null}, {x: 0.397997497, y: null}, {x: 0.139433551, y: null}, {x: 0.118200134, y: null}, {x: 0.212598425, y: null}, {x: 0.144963145, y: null}, {x: 0.096373057, y: null}, {x: 0.07611336, y: null}, {x: 0.048411498, y: null}, {x: 0.134879725, y: null}, {x: 0.095196122, y: null}, {x: 0.013540961, y: null}, {x: 0.017918677, y: null}, {x: 0.047355164, y: null}, {x: 0.131503482, y: null}, {x: 0.0900369, y: null}, {x: 0.185089974, y: null}, {x: 0.38290788, y: null}, {x: 0.378737542, y: null}, {x: 0.235448005, y: null}, {x: 0.693144723, y: null}, {x: 0.720372836, y: null}, {x: 0.430147059, y: null}, {x: 0.667281106, y: null}, {x: 0.58412483, y: null}, {x: 0.538157151, y: null}, {x: 0.393564356, y: null}, {x: 0.097435897, y: null}, {x: 0.390350877, y: null}, {x: 0.296444954, y: null}, {x: 0.262979684, y: null}, {x: 0.120175439, y: null}, {x: 0.159151194, y: null}, {x: 0.038746439, y: null}, {x: 0.129694836, y: null}, {x: 0.097738877, y: null}, {x: 0.016155989, y: null}, {x: 0.205310881, y: null}, {x: 0.047037263, y: null}, {x: 0.081372549, y: null}, {x: 0.041294643, y: null}, {x: 0.013256484, y: null}, {x: 0.145522388, y: null}, {x: 0.0, y: null}, {x: 0.157942238, y: null}, {x: 0.0, y: null}, {x: 0.04584121, y: null}, {x: 0.527100945, y: null}, {x: 0.544263776, y: null}, {x: 0.287578288, y: null}, {x: 0.360753221, y: null}, {x: 0.241231822, y: null}, {x: 0.362308254, y: null}, {x: 0.245514636, y: null}, {x: 0.055185538, y: null}, {x: 0.160070361, y: null}, {x: 0.021712907, y: null}, {x: 0.117943548, y: null}, {x: 0.511073254, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.04731466375, y: 318.01129862853503}, {x: 0.15694694199999998, y: 97.50223199303082}, {x: 0.32998777737499996, y: 193.25888523292286}, {x: 0.720355499125, y: 165.58233927769797}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.04731466375, y: -105.94169103352851}, {x: 0.15694694199999998, y: 13.299348642767981}, {x: 0.32998777737499996, y: 62.23000140693864}, {x: 0.720355499125, y: 58.45055278661121}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.04731466375, y: 741.9642882905986}, {x: 0.15694694199999998, y: 181.70511534329364}, {x: 0.32998777737499996, y: 324.2877690589071}, {x: 0.720355499125, y: 272.7141257687847}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.105365854, y: null}, {x: 0.127701375, y: null}, {x: 0.180576631, y: null}, {x: 0.078467153, y: null}, {x: 0.223543401, y: null}, {x: 0.348920863, y: null}, {x: 0.10815402, y: null}, {x: 0.042747022, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.001912046, y: null}, {x: 0.086647727, y: null}, {x: 0.03286385, y: null}, {x: 0.159192825, y: null}, {x: 0.052013423, y: null}, {x: 0.243128964, y: null}, {x: 0.0, y: null}, {x: 0.0375, y: null}, {x: 0.08004386, y: null}, {x: 0.058378378, y: null}, {x: 0.0, y: null}, {x: 0.009084556, y: null}, {x: 0.0, y: 0.093729}, {x: 0.012643678, y: null}, {x: 0.008561644, y: null}, {x: 0.048888889, y: null}, {x: 0.020186335, y: null}, {x: 0.0, y: null}, {x: 0.214805825, y: null}, {x: 0.0, y: null}, {x: 0.074193548, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051190476, y: null}, {x: 0.11011236, y: null}, {x: 0.017365523, y: null}, {x: 0.016194332, y: null}, {x: 0.181886793, y: null}, {x: 0.086486486, y: null}, {x: 0.028037383, y: null}, {x: 0.041269841, y: null}, {x: 0.137373737, y: null}, {x: 0.009943182, y: null}, {x: 0.156698565, y: null}, {x: 0.0, y: null}, {x: 0.009114583, y: null}, {x: 0.007532957, y: null}, {x: 0.0, y: null}, {x: 0.065433855, y: null}, {x: 0.101090188, y: null}, {x: 0.043076923, y: null}, {x: 0.104584527, y: null}, {x: 0.084302326, y: null}, {x: 0.077343039, y: null}, {x: 0.039269406, y: null}, {x: 0.0, y: null}, {x: 0.112244898, y: null}, {x: 0.0, y: null}, {x: 0.056050955, y: null}, {x: 0.123636364, y: null}, {x: 0.04192229, y: null}, {x: 0.01509434, y: null}, {x: 0.027383367, y: null}, {x: 0.563432836, y: null}, {x: 0.116087213, y: null}, {x: 0.018032787, y: null}, {x: 0.079545455, y: null}, {x: 0.087142857, y: null}, {x: 0.016791045, y: null}, {x: 0.065853659, y: null}, {x: 0.0, y: null}, {x: 0.024526198, y: null}, {x: 0.046783626, y: null}, {x: 0.101596517, y: null}, {x: 0.062247373, y: null}, {x: 0.037094281, y: null}, {x: 0.023049645, y: null}, {x: 0.165695793, y: null}, {x: 0.311848958, y: null}, {x: 0.035984848, y: null}, {x: 0.086508754, y: null}, {x: 0.140625, y: null}, {x: 0.179422836, y: null}, {x: 0.403317329, y: null}, {x: 0.567177638, y: null}, {x: 0.18296893, y: null}, {x: 0.135164835, y: null}, {x: 0.341350601, y: null}, {x: 0.067692308, y: null}, {x: 0.043478261, y: null}, {x: 0.096518987, y: null}, {x: 0.075898802, y: null}, {x: 0.020446097, y: null}, {x: 0.049848943, y: null}, {x: 0.036156513, y: null}, {x: 0.048543689, y: null}, {x: 0.168769716, y: null}, {x: 0.57037037, y: null}, {x: 0.408592322, y: null}, {x: 0.336188437, y: null}, {x: 0.200578991, y: null}, {x: 0.160550459, y: null}, {x: 0.520951888, y: null}, {x: 0.433333333, y: null}, {x: 0.746478873, y: null}, {x: 0.252702703, y: null}, {x: 0.119700748, y: null}, {x: 0.014677104, y: null}, {x: 0.332987552, y: null}, {x: 0.125859697, y: null}, {x: 0.053949904, y: null}, {x: 0.166951567, y: null}, {x: 0.077544426, y: null}, {x: 0.144, y: null}, {x: 0.188337273, y: null}, {x: 0.182937956, y: null}, {x: 0.150515464, y: null}, {x: 0.059340659, y: null}, {x: 0.238270469, y: null}, {x: 0.07963595, y: null}, {x: 0.090233546, y: null}, {x: 0.003418154, y: null}, {x: 0.0, y: null}, {x: 0.02514193, y: null}, {x: 0.05987395, y: null}, {x: 0.150637312, y: null}, {x: 0.055606199, y: null}, {x: 0.094919786, y: null}, {x: 0.052230686, y: null}, {x: 0.068503351, y: null}, {x: 0.025925926, y: null}, {x: 0.099388379, y: null}, {x: 0.005780347, y: null}, {x: 0.0, y: null}, {x: 0.297540208, y: null}, {x: 0.085231447, y: null}, {x: 0.047406807, y: null}, {x: 0.160447761, y: null}, {x: 0.13250678, y: null}, {x: 0.021102498, y: null}, {x: 0.028156222, y: null}, {x: 0.155704698, y: null}, {x: 0.069627851, y: null}, {x: 0.068255688, y: null}, {x: 0.147706422, y: null}, {x: 0.056720099, y: null}, {x: 0.180944756, y: null}, {x: 0.445935869, y: null}, {x: 0.005617978, y: null}, {x: 0.211564626, y: null}, {x: 0.0, y: null}, {x: 0.017563117, y: null}, {x: 0.0, y: null}, {x: 0.132424538, y: null}, {x: 0.0, y: null}, {x: 0.120667523, y: null}, {x: 0.155844156, y: null}, {x: 0.0, y: null}, {x: 0.011111111, y: null}, {x: 0.035864979, y: null}, {x: 0.117985612, y: null}, {x: 0.006263048, y: null}, {x: 0.169873107, y: null}, {x: 0.161861758, y: null}, {x: 0.069643806, y: null}, {x: 0.210958904, y: null}, {x: 0.062897791, y: null}, {x: 0.226586103, y: null}, {x: 0.100110011, y: null}, {x: 0.228985507, y: null}, {x: 0.0416, y: null}, {x: 0.041720991, y: null}, {x: 0.075301205, y: null}, {x: 0.042037187, y: null}, {x: 0.049303944, y: null}, {x: 0.264023211, y: null}, {x: 0.006952491, y: null}, {x: 0.215423303, y: null}, {x: 0.091932458, y: null}, {x: 0.0, y: null}, {x: 0.064651553, y: null}, {x: 0.085135135, y: null}, {x: 0.083086053, y: null}, {x: 0.111438183, y: null}, {x: 0.094222222, y: null}, {x: 0.280571074, y: null}, {x: 0.357062147, y: null}, {x: 0.186248912, y: null}, {x: 0.069781931, y: null}, {x: 0.0, y: null}, {x: 0.067882472, y: null}, {x: 0.681473456, y: null}, {x: 0.522123894, y: null}, {x: 0.295514512, y: null}, {x: 0.0, y: null}, {x: 0.354925776, y: null}, {x: 0.389692586, y: null}, {x: 0.078374456, y: null}, {x: 0.300729927, y: null}, {x: 0.278776978, y: null}, {x: 0.196078431, y: null}, {x: 0.473479948, y: null}, {x: 0.356513222, y: null}, {x: 0.393630573, y: null}, {x: 0.180754226, y: null}, {x: 0.607526882, y: null}, {x: 0.125, y: null}, {x: 0.174358974, y: null}, {x: 0.101910828, y: null}, {x: 0.085222121, y: null}, {x: 0.066115702, y: null}, {x: 0.074225122, y: null}, {x: 0.130674003, y: null}, {x: 0.199579832, y: null}, {x: 0.764444444, y: null}, {x: 0.346153846, y: null}, {x: 0.325123153, y: null}, {x: 0.527827648, y: null}, {x: 0.032423208, y: null}, {x: 0.056712963, y: null}, {x: 0.0, y: null}, {x: 0.147959184, y: null}, {x: 0.109707972, y: null}, {x: 0.185028249, y: null}, {x: 0.151345292, y: null}, {x: 0.032191781, y: null}, {x: 0.450931677, y: null}, {x: 0.173245614, y: null}, {x: 0.043789097, y: null}, {x: 0.433802817, y: null}, {x: 0.051825677, y: null}, {x: 0.132575758, y: null}, {x: 0.087141339, y: null}, {x: 0.079012346, y: null}, {x: 0.164910432, y: null}, {x: 0.0, y: null}, {x: 0.037076271, y: null}, {x: 0.0, y: null}, {x: 0.004810997, y: null}, {x: 0.072649573, y: null}, {x: 0.116049383, y: null}, {x: 0.185783522, y: null}, {x: 0.0546875, y: null}, {x: 0.008190618, y: null}, {x: 0.068567026, y: null}, {x: 0.056057866, y: null}, {x: 0.338461539, y: null}, {x: 0.043539326, y: null}, {x: 0.089788732, y: null}, {x: 0.060455192, y: null}, {x: 0.096128171, y: null}, {x: 0.047819972, y: 0.175}, {x: 0.028824834, y: null}, {x: 0.223713647, y: null}, {x: 0.003062787, y: null}, {x: 0.03803681, y: null}, {x: 0.025835866, y: null}, {x: 0.526992288, y: null}, {x: 0.147018031, y: null}, {x: 0.093877551, y: null}, {x: 0.273966766, y: null}, {x: 0.0, y: null}, {x: 0.129432624, y: null}, {x: 0.234777839, y: null}, {x: 0.078154426, y: null}, {x: 0.288143599, y: null}, {x: 0.16075388, y: null}, {x: 0.103986135, y: null}, {x: 0.169312169, y: null}, {x: 0.126778784, y: null}, {x: 0.087665647, y: null}, {x: 0.046774194, y: null}, {x: 0.176399027, y: null}, {x: 0.078152753, y: null}, {x: 0.0, y: null}, {x: 0.124863089, y: null}, {x: 0.007912957, y: null}, {x: 0.015957447, y: null}, {x: 0.055993001, y: null}, {x: 0.024819028, y: null}, {x: 0.168234065, y: null}, {x: 0.033358605, y: null}, {x: 0.080824089, y: null}, {x: 0.21902378, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.211151737, y: null}, {x: 0.09883236, y: null}, {x: 0.274376417, y: null}, {x: 0.066914498, y: null}, {x: 0.05345502, y: null}, {x: 0.119131044, y: null}, {x: 0.123703704, y: null}, {x: 0.035940803, y: null}, {x: 0.171606864, y: null}, {x: 0.010538642, y: null}, {x: 0.038659794, y: null}, {x: 0.104722793, y: null}, {x: 0.025542784, y: null}, {x: 0.072033898, y: null}, {x: 0.162601626, y: null}, {x: 0.049731183, y: null}, {x: 0.111776447, y: null}, {x: 0.075938567, y: null}, {x: 0.123469388, y: null}, {x: 0.004201681, y: null}, {x: 0.069064748, y: null}, {x: 0.075785582, y: null}, {x: 0.022698613, y: null}, {x: 0.093304061, y: null}, {x: 0.126888218, y: null}, {x: 0.031088083, y: null}, {x: 0.043604651, y: null}, {x: 0.059933407, y: null}, {x: 0.144288577, y: null}, {x: 0.082706767, y: null}, {x: 0.062365591, y: null}, {x: 0.103448276, y: null}, {x: 0.049327354, y: null}, {x: 0.116154873, y: null}, {x: 0.079656863, y: null}, {x: 0.038343558, y: null}, {x: 0.030959752, y: null}, {x: 0.137010676, y: null}, {x: 0.062062937, y: null}, {x: 0.070234114, y: null}, {x: 0.039125432, y: null}, {x: 0.124277457, y: null}, {x: 0.14924297, y: null}, {x: 0.128827878, y: null}, {x: 0.181007579, y: null}, {x: 0.264024704, y: null}, {x: 0.182767624, y: null}, {x: 0.114482759, y: null}, {x: 0.13799448, y: null}, {x: 0.069688109, y: null}, {x: 0.440084836, y: null}, {x: 0.127807901, y: null}, {x: 0.07247191, y: null}, {x: 0.192026951, y: null}, {x: 0.256003098, y: null}, {x: 0.247634069, y: null}, {x: 0.069755336, y: null}, {x: 0.091484465, y: null}, {x: 0.162002946, y: null}, {x: 0.173322005, y: null}, {x: 0.003348962, y: null}, {x: 0.253140097, y: null}, {x: 0.190780142, y: null}, {x: 0.119382023, y: null}, {x: 0.103550296, y: null}, {x: 0.041048035, y: null}, {x: 0.041136874, y: null}, {x: 0.153524492, y: null}, {x: 0.255386232, y: null}, {x: 0.272606383, y: null}, {x: 0.132923242, y: null}, {x: 0.110393423, y: null}, {x: 0.163822526, y: null}, {x: 0.11625239, y: null}, {x: 0.12860676, y: null}, {x: 0.090605892, y: null}, {x: 0.104689564, y: null}, {x: 0.04501845, y: null}, {x: 0.066892464, y: null}, {x: 0.056030389, y: null}, {x: 0.072949527, y: null}, {x: 0.149312377, y: null}, {x: 0.282181357, y: null}, {x: 0.15862069, y: null}, {x: 0.16550765, y: null}, {x: 0.072987722, y: null}, {x: 0.341517857, y: null}, {x: 0.193345324, y: null}, {x: 0.50660066, y: null}, {x: 0.222645618, y: null}, {x: 0.142857143, y: null}, {x: 0.060335782, y: null}, {x: 0.113872832, y: null}, {x: 0.181596884, y: null}, {x: 0.204612655, y: null}, {x: 0.079749478, y: null}, {x: 0.427392739, y: null}, {x: 0.34904271, y: null}, {x: 0.192474674, y: null}, {x: 0.284760845, y: null}, {x: 0.169529837, y: null}, {x: 0.358309318, y: null}, {x: 0.350997935, y: null}, {x: 0.1843927, y: null}, {x: 0.31897712, y: null}, {x: 0.546705998, y: null}, {x: 0.254285714, y: null}, {x: 0.264947245, y: null}, {x: 0.132394366, y: null}, {x: 0.1425, y: 33.039}, {x: 0.091035441, y: null}, {x: 0.512331317, y: null}, {x: 0.25782957, y: null}, {x: 0.504943503, y: null}, {x: 0.202027027, y: null}, {x: 0.25, y: null}, {x: 0.157495256, y: null}, {x: 0.187030075, y: null}, {x: 0.140300935, y: null}, {x: 0.323996265, y: null}, {x: 0.168269231, y: null}, {x: 0.110200364, y: null}, {x: 0.092343659, y: null}, {x: 0.039877301, y: null}, {x: 0.033057851, y: null}, {x: 0.088983051, y: null}, {x: 0.081067721, y: null}, {x: 0.026357574, y: null}, {x: 0.0, y: null}, {x: 0.047070775, y: null}, {x: 0.025242718, y: null}, {x: 0.0, y: null}, {x: 0.016577857, y: null}, {x: 0.072675599, y: null}, {x: 0.418491484, y: null}, {x: 0.383269313, y: null}, {x: 0.143283582, y: null}, {x: 0.018759019, y: null}, {x: 0.097142857, y: null}, {x: 0.340350877, y: null}, {x: 0.046613896, y: null}, {x: 0.060918947, y: null}, {x: 0.169749728, y: null}, {x: 0.211567732, y: null}, {x: 0.0, y: null}, {x: 0.134290844, y: null}, {x: 0.215109573, y: null}, {x: 0.0, y: null}, {x: 0.073217726, y: null}, {x: 0.053984576, y: null}, {x: 0.102941177, y: null}, {x: 0.077723043, y: null}, {x: 0.102367243, y: null}, {x: 0.301497161, y: null}, {x: 0.190176322, y: null}, {x: 0.043165468, y: null}, {x: 0.166111111, y: null}, {x: 0.078163772, y: null}, {x: 0.123096447, y: null}, {x: 0.106224628, y: null}, {x: 0.201897019, y: null}, {x: 0.112547529, y: null}, {x: 0.142446043, y: null}, {x: 0.089853826, y: null}, {x: 0.304609218, y: null}, {x: 0.23088685, y: null}, {x: 0.056456456, y: null}, {x: 0.150236967, y: null}, {x: 0.210780926, y: null}, {x: 0.2651341, y: null}, {x: 0.439701897, y: null}, {x: 0.281912494, y: null}, {x: 0.104426788, y: null}, {x: 0.607964105, y: null}, {x: 0.281208936, y: null}, {x: 0.178631052, y: null}, {x: 0.118983957, y: null}, {x: 0.057737814, y: null}, {x: 0.098333333, y: null}, {x: 0.10778781, y: null}, {x: 0.218627998, y: null}, {x: 0.130484989, y: null}, {x: 0.018786127, y: null}, {x: 0.072727273, y: null}, {x: 0.077284946, y: null}, {x: 0.0, y: null}, {x: 0.021528525, y: 999.999999}, {x: 0.113612004, y: null}, {x: 0.283961437, y: null}, {x: 0.042682927, y: null}, {x: 0.0, y: null}, {x: 0.007020623, y: null}, {x: 0.054632867, y: null}, {x: 0.011997177, y: null}, {x: 0.136391068, y: null}, {x: 0.012314379, y: null}, {x: 0.165167095, y: null}, {x: 0.07540395, y: null}, {x: 0.076374019, y: null}, {x: 0.065789474, y: null}, {x: 0.01421092, y: null}, {x: 0.018181818, y: null}, {x: 0.343534057, y: null}, {x: 0.393822394, y: null}, {x: 0.109207709, y: null}, {x: 0.299324324, y: null}, {x: 0.126465145, y: null}, {x: 0.439949431, y: null}, {x: 0.484123107, y: null}, {x: 0.3299389, y: null}, {x: 0.377239199, y: null}, {x: 0.126410835, y: null}, {x: 0.391140434, y: 95.803564}, {x: 0.148487626, y: null}, {x: 0.311876248, y: 1904.333217}, {x: 0.129770992, y: null}, {x: 0.290563476, y: null}, {x: 0.325311203, y: 33.812967}, {x: 0.226287263, y: null}, {x: 0.19058296, y: null}, {x: 0.074882995, y: null}, {x: 0.11875, y: 13.403297}, {x: 0.427721088, y: null}, {x: 0.233539095, y: null}, {x: 0.1064764, y: null}, {x: 0.371531346, y: null}, {x: 0.038932147, y: null}, {x: 0.164929491, y: null}, {x: 0.111464968, y: null}, {x: 0.064239829, y: null}, {x: 0.553734062, y: null}, {x: 0.3091354, y: null}, {x: 0.195307546, y: null}, {x: 0.511737089, y: null}, {x: 0.252288912, y: null}, {x: 0.673400673, y: null}, {x: 0.466556565, y: null}, {x: 0.599202393, y: null}, {x: 0.07117853, y: 29.512963}, {x: 0.261124122, y: null}, {x: 0.661861075, y: null}, {x: 0.282131661, y: null}, {x: 0.333941606, y: null}, {x: 0.320334262, y: null}, {x: 0.162935323, y: null}, {x: 0.553374233, y: null}, {x: 0.220845481, y: null}, {x: 0.367826905, y: null}, {x: 0.606408706, y: null}, {x: 0.428832117, y: null}, {x: 0.425287356, y: null}, {x: 0.393534002, y: null}, {x: 0.499643621, y: null}, {x: 0.40228013, y: null}, {x: 0.196036801, y: null}, {x: 0.104495747, y: null}, {x: 0.247694335, y: null}, {x: 0.0, y: null}, {x: 0.111740891, y: null}, {x: 0.104570637, y: null}, {x: 0.097222222, y: null}, {x: 0.143369176, y: null}, {x: 0.247256767, y: null}, {x: 0.440318302, y: null}, {x: 0.273411371, y: null}, {x: 0.174556213, y: null}, {x: 0.26993865, y: 292.744127}, {x: 0.413441955, y: 194.570504}, {x: 0.353071145, y: 443.440785}, {x: 0.09624198, y: null}, {x: 0.344858963, y: null}, {x: 0.297734628, y: null}, {x: 0.070576541, y: null}, {x: 0.41216992, y: null}, {x: 0.089430894, y: null}, {x: 0.283662478, y: null}, {x: 0.2933213, y: null}, {x: 0.020979021, y: null}, {x: 0.142326733, y: null}, {x: 0.218645949, y: null}, {x: 0.079934747, y: null}, {x: 0.005185185, y: null}, {x: 0.021877205, y: null}, {x: 0.019487179, y: null}, {x: 0.016007114, y: null}, {x: 0.080165289, y: null}, {x: 0.048809524, y: null}, {x: 0.186153846, y: null}, {x: 0.042253521, y: null}, {x: 0.050705467, y: null}, {x: 0.080298786, y: null}, {x: 0.026431718, y: null}, {x: 0.143074581, y: null}, {x: 0.001295337, y: null}, {x: 0.117918314, y: null}, {x: 0.0, y: null}, {x: 0.076203209, y: null}, {x: 0.009615385, y: null}, {x: 0.116828929, y: null}, {x: 0.046614872, y: null}, {x: 0.043117745, y: null}, {x: 0.091375291, y: null}, {x: 0.058034217, y: null}, {x: 0.139097744, y: null}, {x: 0.0, y: null}, {x: 0.007044865, y: null}, {x: 0.015905947, y: null}, {x: 0.084431631, y: null}, {x: 0.047267997, y: null}, {x: 0.07917229, y: null}, {x: 0.0, y: null}, {x: 0.012435233, y: null}, {x: 0.029411765, y: null}, {x: 0.014955135, y: null}, {x: 0.059977578, y: null}, {x: 0.096267191, y: null}, {x: 0.292946338, y: null}, {x: 0.431599229, y: null}, {x: 0.059101655, y: null}, {x: 0.362642586, y: null}, {x: 0.053503185, y: null}, {x: 0.200823045, y: null}, {x: 0.397501837, y: null}, {x: 0.19303072, y: null}, {x: 0.084815321, y: null}, {x: 0.402857143, y: 0.12512}, {x: 0.13074205, y: null}, {x: 0.053875236, y: null}, {x: 0.115666179, y: 5.77926}, {x: 0.289068826, y: null}, {x: 0.164150943, y: null}, {x: 0.12191358, y: null}, {x: 0.217627856, y: null}, {x: 0.34057971, y: null}, {x: 0.520923521, y: null}, {x: 0.347692308, y: null}, {x: 0.496141125, y: null}, {x: 0.578330893, y: null}, {x: 0.701780415, y: 734.949067}, {x: 0.717926186, y: null}, {x: 0.472131148, y: null}, {x: 0.30548926, y: null}, {x: 0.696914701, y: null}, {x: 0.485887097, y: null}, {x: 0.756521739, y: null}, {x: 0.709813875, y: null}, {x: 0.706638116, y: null}, {x: 0.336294416, y: null}, {x: 0.202873313, y: null}, {x: 0.335480674, y: null}, {x: 0.522649781, y: null}, {x: 0.71301536, y: null}, {x: 0.79299691, y: null}, {x: 0.302861685, y: null}, {x: 0.200595829, y: null}, {x: 0.790909091, y: 11.58294}, {x: 0.611345806, y: null}, {x: 0.465714286, y: 71.329358}, {x: 0.539783002, y: null}, {x: 0.5, y: null}, {x: 0.54770318, y: null}, {x: 0.466346154, y: null}, {x: 0.850290698, y: null}, {x: 0.334841629, y: null}, {x: 0.771186441, y: null}, {x: 0.619491525, y: null}, {x: 0.798507463, y: null}, {x: 0.468407751, y: null}, {x: 0.448529412, y: null}, {x: 0.271723122, y: null}, {x: 0.791451732, y: null}, {x: 0.587115666, y: null}, {x: 0.473133287, y: null}, {x: 0.511111111, y: null}, {x: 0.609649123, y: 148.959479}, {x: 0.918666667, y: null}, {x: 0.193078324, y: null}, {x: 0.637599094, y: null}, {x: 0.492332526, y: null}, {x: 0.353466026, y: null}, {x: 0.108202443, y: null}, {x: 0.360069747, y: null}, {x: 0.266009852, y: null}, {x: 0.163120567, y: null}, {x: 0.072106262, y: null}, {x: 0.482256597, y: null}, {x: 0.481981982, y: null}, {x: 0.194842407, y: null}, {x: 0.308779011, y: null}, {x: 0.393171806, y: 291.200847}, {x: 0.280944625, y: null}, {x: 0.429058663, y: null}, {x: 0.415478615, y: null}, {x: 0.688605108, y: 123.559491}, {x: 0.403846154, y: null}, {x: 0.529829546, y: 253.998766}, {x: 0.283454988, y: 25.889026}, {x: 0.689655172, y: null}, {x: 0.327830189, y: 32.36738}, {x: 0.277248677, y: 54.925090000000004}, {x: 0.367272727, y: null}, {x: 0.083916084, y: null}, {x: 0.140888208, y: null}, {x: 0.112855741, y: null}, {x: 0.068510371, y: null}, {x: 0.06961507, y: null}, {x: 0.422695036, y: null}, {x: 0.013148283, y: null}, {x: 0.099644128, y: null}, {x: 0.135785007, y: null}, {x: 0.038819876, y: null}, {x: 0.207633588, y: null}, {x: 0.049910873, y: null}, {x: 0.057206208, y: null}, {x: 0.074529075, y: null}, {x: 0.226962457, y: null}, {x: 0.031786942, y: null}, {x: 0.277978339, y: null}, {x: 0.128274616, y: null}, {x: 0.017479301, y: null}, {x: 0.031531532, y: null}, {x: 0.092196612, y: null}, {x: 0.144349478, y: null}, {x: 0.017973856, y: 40.416186}, {x: 0.050243112, y: null}, {x: 0.043878273, y: null}, {x: 0.05679336, y: null}, {x: 0.054938632, y: null}, {x: 0.097997893, y: null}, {x: 0.023809524, y: null}, {x: 0.194297783, y: null}, {x: 0.035339064, y: null}, {x: 0.157973174, y: null}, {x: 0.078391275, y: null}, {x: 0.118937644, y: null}, {x: 0.073660714, y: null}, {x: 0.008857396, y: null}, {x: 0.069457659, y: null}, {x: 0.090103397, y: null}, {x: 0.033205619, y: null}, {x: 0.188223619, y: null}, {x: 0.323778196, y: null}, {x: 0.064375341, y: null}, {x: 0.263235294, y: null}, {x: 0.170763828, y: null}, {x: 0.0, y: null}, {x: 0.147623863, y: null}, {x: 0.215273602, y: null}, {x: 0.035479632, y: null}, {x: 0.304761905, y: null}, {x: 0.357512953, y: null}, {x: 0.156123822, y: null}, {x: 0.188461539, y: null}, {x: 0.063866513, y: null}, {x: 0.186697783, y: null}, {x: 0.262158956, y: null}, {x: 0.016722408, y: null}, {x: 0.177483444, y: null}, {x: 0.161413563, y: null}, {x: 0.204156889, y: null}, {x: 0.210573477, y: null}, {x: 0.111827957, y: null}, {x: 0.164348925, y: null}, {x: 0.040358744, y: null}, {x: 0.445730825, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050359712, y: 1.80788}, {x: 0.066358025, y: null}, {x: 0.057142857, y: null}, {x: 0.246930423, y: null}, {x: 0.053128689, y: null}, {x: 0.127055306, y: null}, {x: 0.077281812, y: null}, {x: 0.12568306, y: null}, {x: 0.054994388, y: null}, {x: 0.325423729, y: null}, {x: 0.092857143, y: null}, {x: 0.0, y: null}, {x: 0.261203585, y: null}, {x: 0.166549047, y: null}, {x: 0.114084507, y: null}, {x: 0.095015576, y: 1.335464}, {x: 0.209486166, y: null}, {x: 0.079704797, y: null}, {x: 0.130170316, y: null}, {x: 0.287390029, y: null}, {x: 0.065420561, y: null}, {x: 0.087431694, y: null}, {x: 0.009425878, y: null}, {x: 0.205692109, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.088277858, y: null}, {x: 0.029090909, y: null}, {x: 0.03567681, y: null}, {x: 0.153957529, y: null}, {x: 0.0, y: null}, {x: 0.045031056, y: null}, {x: 0.096429886, y: null}, {x: 0.149019608, y: null}, {x: 0.042151163, y: null}, {x: 0.0, y: null}, {x: 0.048780488, y: 0.072}, {x: 0.052028219, y: null}, {x: 0.024713151, y: null}, {x: 0.105195638, y: null}, {x: 0.265402844, y: null}, {x: 0.251345119, y: null}, {x: 0.017069701, y: null}, {x: 0.177110694, y: null}, {x: 0.447255742, y: null}, {x: 0.353989813, y: null}, {x: 0.492346939, y: null}, {x: 0.109599395, y: null}, {x: 0.529886914, y: null}, {x: 0.0, y: null}, {x: 0.076752768, y: null}, {x: 0.76118068, y: null}, {x: 0.907096774, y: null}, {x: 0.108994709, y: null}, {x: 0.060945274, y: null}, {x: 0.207780725, y: null}, {x: 0.055555556, y: null}, {x: 0.070107858, y: null}, {x: 0.202298851, y: null}, {x: 0.164718385, y: null}, {x: 0.204397394, y: null}, {x: 0.100269179, y: null}, {x: 0.070422535, y: null}, {x: 0.155378486, y: null}, {x: 0.105080831, y: null}, {x: 0.424657534, y: null}, {x: 0.166969147, y: null}, {x: 0.614195764, y: null}, {x: 0.174245644, y: null}, {x: 0.494323144, y: null}, {x: 0.272815534, y: null}, {x: 0.063165906, y: null}, {x: 0.35480916, y: null}, {x: 0.35375086, y: null}, {x: 0.436554133, y: null}, {x: 0.555452865, y: null}, {x: 0.297352342, y: null}, {x: 0.304854369, y: null}, {x: 0.483031674, y: null}, {x: 0.739099357, y: null}, {x: 0.706566916, y: null}, {x: 0.530754597, y: null}, {x: 0.511075949, y: null}, {x: 0.287601626, y: null}, {x: 0.528176796, y: null}, {x: 0.162995595, y: null}, {x: 0.288888889, y: null}, {x: 0.27589545, y: null}, {x: 0.286082474, y: null}, {x: 0.092459016, y: null}, {x: 0.410671257, y: null}, {x: 0.784060552, y: null}, {x: 0.775528979, y: null}, {x: 0.462857143, y: null}, {x: 0.388213283, y: null}, {x: 0.155482815, y: null}, {x: 0.378787879, y: null}, {x: 0.267548322, y: null}, {x: 0.880447585, y: null}, {x: 0.509410289, y: null}, {x: 0.466165414, y: 32.512411}, {x: 0.575409836, y: null}, {x: 0.66496945, y: null}, {x: 0.800465387, y: null}, {x: 0.730895645, y: null}, {x: 0.539273154, y: null}, {x: 0.554922701, y: null}, {x: 0.788423154, y: null}, {x: 0.816571131, y: null}, {x: 0.816338028, y: null}, {x: 0.857978279, y: null}, {x: 0.901328273, y: null}, {x: 0.891085791, y: null}, {x: 0.729947602, y: null}, {x: 0.70969993, y: null}, {x: 0.792498005, y: null}, {x: 0.866344606, y: null}, {x: 0.39581517, y: null}, {x: 0.897160883, y: null}, {x: 0.446332737, y: null}, {x: 0.700680272, y: null}, {x: 0.715441672, y: null}, {x: 0.386773547, y: null}, {x: 0.845647773, y: null}, {x: 0.76681128, y: null}, {x: 0.459394905, y: null}, {x: 0.346446701, y: null}, {x: 0.500794913, y: null}, {x: 0.79403489, y: null}, {x: 0.763414634, y: null}, {x: 0.275307474, y: null}, {x: 0.583333333, y: null}, {x: 0.374887082, y: null}, {x: 0.868758916, y: null}, {x: 0.770931326, y: null}, {x: 0.411007026, y: null}, {x: 0.500808625, y: null}, {x: 0.519764508, y: 144.338492}, {x: 0.892459827, y: null}, {x: 0.744423792, y: null}, {x: 0.919898284, y: null}, {x: 0.877671334, y: null}, {x: 0.885714286, y: null}, {x: 0.810117302, y: null}, {x: 0.662431942, y: null}, {x: 0.884689302, y: null}, {x: 0.164921466, y: null}, {x: 0.368703108, y: null}, {x: 0.117740652, y: null}, {x: 0.17421875, y: null}, {x: 0.148337596, y: null}, {x: 0.29445823, y: null}, {x: 0.19520548, y: null}, {x: 0.336518047, y: null}, {x: 0.112641815, y: null}, {x: 0.0, y: null}, {x: 0.089770355, y: null}, {x: 0.124255952, y: null}, {x: 0.229804315, y: null}, {x: 0.111111111, y: null}, {x: 0.087553648, y: null}, {x: 0.171250649, y: null}, {x: 0.179650915, y: null}, {x: 0.123737374, y: null}, {x: 0.097915657, y: null}, {x: 0.309719934, y: null}, {x: 0.334868421, y: null}, {x: 0.107121836, y: null}, {x: 0.448412698, y: null}, {x: 0.154831199, y: null}, {x: 0.11942446, y: null}, {x: 0.070607553, y: null}, {x: 0.069484241, y: null}, {x: 0.128732581, y: null}, {x: 0.05971223, y: null}, {x: 0.117810118, y: null}, {x: 0.031338028, y: null}, {x: 0.083333333, y: null}, {x: 0.060202451, y: null}, {x: 0.119221411, y: null}, {x: 0.078912467, y: null}, {x: 0.028119508, y: null}, {x: 0.046100819, y: null}, {x: 0.080040188, y: null}, {x: 0.002484472, y: null}, {x: 0.178756477, y: null}, {x: 0.064392119, y: null}, {x: 0.0, y: null}, {x: 0.188484519, y: null}, {x: 0.343164794, y: null}, {x: 0.498570067, y: null}, {x: 0.121147391, y: null}, {x: 0.022821577, y: null}, {x: 0.0, y: null}, {x: 0.240073869, y: null}, {x: 0.158736505, y: null}, {x: 0.032423208, y: null}, {x: 0.167942584, y: null}, {x: 0.240983607, y: null}, {x: 0.450167973, y: null}, {x: 0.603729604, y: null}, {x: 0.61519806, y: null}, {x: 0.520325203, y: null}, {x: 0.39229249, y: null}, {x: 0.160136286, y: null}, {x: 0.674418605, y: null}, {x: 0.4625, y: null}, {x: 0.172566372, y: null}, {x: 0.024505929, y: null}, {x: 0.215869312, y: null}, {x: 0.043548387, y: null}, {x: 0.066592675, y: null}, {x: 0.188972667, y: null}, {x: 0.088761632, y: null}, {x: 0.054274084, y: null}, {x: 0.128458498, y: null}, {x: 0.257826888, y: null}, {x: 0.025641026, y: null}, {x: 0.20610687, y: null}, {x: 0.043855642, y: null}, {x: 0.0, y: null}, {x: 0.259084474, y: null}, {x: 0.064085447, y: null}, {x: 0.231536926, y: null}, {x: 0.059910771, y: null}, {x: 0.296178344, y: null}, {x: 0.123842028, y: null}, {x: 0.005, y: null}, {x: 0.039193084, y: null}, {x: 0.346133333, y: null}, {x: 0.032371569, y: null}, {x: 0.027896164, y: null}, {x: 0.06244087, y: null}, {x: 0.093683084, y: null}, {x: 0.045801527, y: null}, {x: 0.100452489, y: null}, {x: 0.054640719, y: null}, {x: 0.036539269, y: null}, {x: 0.048086867, y: null}, {x: 0.118127382, y: null}, {x: 0.125984252, y: null}, {x: 0.07565337, y: null}, {x: 0.0446593, y: null}, {x: 0.065279092, y: null}, {x: 0.0890625, y: null}, {x: 0.410596027, y: null}, {x: 0.0, y: null}, {x: 0.073899371, y: null}, {x: 0.043646945, y: null}, {x: 0.158458244, y: null}, {x: 0.020166074, y: null}, {x: 0.048794827, y: null}, {x: 0.176685621, y: null}, {x: 0.054528212, y: null}, {x: 0.189847297, y: null}, {x: 0.273056058, y: null}, {x: 0.039981404, y: null}, {x: 0.090689238, y: null}, {x: 0.079083969, y: null}, {x: 0.101827676, y: null}, {x: 0.043093923, y: null}, {x: 0.11942446, y: null}, {x: 0.052166225, y: null}, {x: 0.401840491, y: null}, {x: 0.284057971, y: null}, {x: 0.322128852, y: null}, {x: 0.084566596, y: null}, {x: 0.314262691, y: null}, {x: 0.082706767, y: null}, {x: 0.179908676, y: null}, {x: 0.230769231, y: null}, {x: 0.434077079, y: null}, {x: 0.4192673, y: null}, {x: 0.049511855, y: null}, {x: 0.023255814, y: null}, {x: 0.019674936, y: null}, {x: 0.251763047, y: null}, {x: 0.177434908, y: null}, {x: 0.080993521, y: null}, {x: 0.097095436, y: null}, {x: 0.088639837, y: null}, {x: 0.012965964, y: null}, {x: 0.033877039, y: null}, {x: 0.132625272, y: null}, {x: 0.020084567, y: null}, {x: 0.026315789, y: null}, {x: 0.014937107, y: null}, {x: 0.178063943, y: null}, {x: 0.004398827, y: null}, {x: 0.04007286, y: null}, {x: 0.035555556, y: null}, {x: 0.058421851, y: null}, {x: 0.094894027, y: null}, {x: 0.011702128, y: null}, {x: 0.032258065, y: null}, {x: 0.0, y: null}, {x: 0.038085938, y: null}, {x: 0.032821599, y: null}, {x: 0.06330366, y: 0.89}, {x: 0.026004728, y: null}, {x: 0.216653193, y: null}, {x: 0.322722283, y: null}, {x: 0.037533512, y: 0.18}, {x: 0.078947368, y: null}, {x: 0.019346231, y: 0.276}, {x: 0.377939984, y: null}, {x: 0.204854369, y: null}, {x: 0.222056632, y: null}, {x: 0.114333057, y: null}, {x: 0.124388919, y: null}, {x: 0.015384615, y: null}, {x: 0.052567237, y: null}, {x: 0.007778738, y: null}, {x: 0.021171489, y: null}, {x: 0.006698565, y: null}, {x: 0.204685573, y: null}, {x: 0.040298507, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022016222, y: null}, {x: 0.019549763, y: null}, {x: 0.185412027, y: null}, {x: 0.044612795, y: null}, {x: 0.024324324, y: null}, {x: 0.172839506, y: null}, {x: 0.085768742, y: null}, {x: 0.151589242, y: null}, {x: 0.132075472, y: null}, {x: 0.025228127, y: null}, {x: 0.020833333, y: null}, {x: 0.908791209, y: 176.54059600000002}, {x: 0.815769522, y: null}, {x: 0.888643068, y: null}, {x: 0.973780044, y: null}, {x: 0.825046729, y: null}, {x: 0.978891821, y: null}, {x: 0.931164902, y: null}, {x: 0.982928091, y: null}, {x: 0.978562421, y: null}, {x: 0.888653234, y: null}, {x: 0.949283352, y: null}, {x: 0.97324941, y: null}, {x: 0.916176471, y: null}, {x: 0.932621748, y: null}, {x: 0.873153779, y: null}, {x: 0.951820129, y: null}, {x: 0.779874214, y: null}, {x: 0.948481353, y: null}, {x: 0.899947062, y: null}, {x: 0.932416953, y: null}, {x: 0.909038239, y: null}, {x: 0.890177881, y: null}, {x: 0.704281447, y: null}, {x: 0.873128448, y: null}, {x: 0.958499601, y: null}, {x: 0.99327505, y: null}, {x: 0.986601705, y: 6.126247}, {x: 0.963092269, y: null}, {x: 0.650491803, y: null}, {x: 0.918296893, y: null}, {x: 0.949438202, y: null}, {x: 0.971014493, y: null}, {x: 0.977946768, y: null}, {x: 0.894854586, y: null}, {x: 0.874005305, y: null}, {x: 0.947829014, y: null}, {x: 0.8113612, y: null}, {x: 0.870611836, y: null}, {x: 0.82230997, y: null}, {x: 0.785929648, y: null}, {x: 0.934655776, y: null}, {x: 0.918844567, y: null}, {x: 0.856401384, y: null}, {x: 0.925694838, y: null}, {x: 0.711111111, y: 38.4927}, {x: 0.88619403, y: null}, {x: 0.938500961, y: null}, {x: 1.0, y: null}, {x: 0.527292576, y: null}, {x: 1.0, y: null}, {x: 0.906885246, y: null}, {x: 0.838541667, y: null}, {x: 0.54951857, y: null}, {x: 0.800322061, y: null}, {x: 0.729971182, y: null}, {x: 0.454146074, y: null}, {x: 0.299352751, y: null}, {x: 0.650655022, y: null}, {x: 0.476335878, y: null}, {x: 0.189303905, y: null}, {x: 0.430843374, y: null}, {x: 0.260190217, y: null}, {x: 0.33526971, y: null}, {x: 0.399484536, y: null}, {x: 0.300775901, y: null}, {x: 0.159453303, y: null}, {x: 0.379435192, y: null}, {x: 0.881287726, y: null}, {x: 0.702885206, y: null}, {x: 0.566176471, y: null}, {x: 0.754769921, y: null}, {x: 0.252701579, y: null}, {x: 0.614740369, y: null}, {x: 0.687757909, y: null}, {x: 0.474349442, y: null}, {x: 0.581576027, y: null}, {x: 0.173955296, y: null}, {x: 0.72702884, y: null}, {x: 0.395575221, y: null}, {x: 0.251528384, y: null}, {x: 0.346712212, y: null}, {x: 0.499198718, y: null}, {x: 0.491246874, y: null}, {x: 0.041331803, y: null}, {x: 0.480324544, y: null}, {x: 0.211472603, y: null}, {x: 0.320621469, y: null}, {x: 0.184400826, y: null}, {x: 0.296616837, y: null}, {x: 0.576530612, y: null}, {x: 0.146976744, y: null}, {x: 0.191133721, y: null}, {x: 0.160945843, y: null}, {x: 0.122765197, y: null}, {x: 0.181467182, y: null}, {x: 0.318761384, y: null}, {x: 0.02997076, y: 57.7297}, {x: 0.08986731, y: null}, {x: 0.198795181, y: null}, {x: 0.036603221, y: null}, {x: 0.340713407, y: null}, {x: 0.35462963, y: null}, {x: 0.359520124, y: null}, {x: 0.181467182, y: null}, {x: 0.159113797, y: null}, {x: 0.122165326, y: null}, {x: 0.222608696, y: null}, {x: 0.450557621, y: null}, {x: 0.131989001, y: null}, {x: 0.294383149, y: null}, {x: 0.086277427, y: null}, {x: 0.029985008, y: null}, {x: 0.375826251, y: null}, {x: 0.062740077, y: null}, {x: 0.149467839, y: null}, {x: 0.116963064, y: null}, {x: 0.156133829, y: null}, {x: 0.247181965, y: null}, {x: 0.248914617, y: null}, {x: 0.078393881, y: null}, {x: 0.175405743, y: null}, {x: 0.141150443, y: null}, {x: 0.24463305, y: null}, {x: 0.371785714, y: null}, {x: 0.285863874, y: null}, {x: 0.370653096, y: null}, {x: 0.444073456, y: null}, {x: 0.331352155, y: null}, {x: 0.44708589, y: null}, {x: 0.277604708, y: null}, {x: 0.424954792, y: null}, {x: 0.748896518, y: null}, {x: 0.182566405, y: null}, {x: 0.327433628, y: null}, {x: 0.843330349, y: null}, {x: 0.51390059, y: 26.852272}, {x: 0.552982456, y: 17.432869}, {x: 0.21563981, y: null}, {x: 0.355847405, y: null}, {x: 0.462015504, y: 2.114101}, {x: 0.167921251, y: null}, {x: 0.175528507, y: 27.576203}, {x: 0.147877013, y: null}, {x: 0.237837838, y: null}, {x: 0.137959521, y: null}, {x: 0.479514416, y: null}, {x: 0.033795494, y: null}, {x: 0.253697383, y: null}, {x: 0.25728863, y: null}, {x: 0.220485627, y: null}, {x: 0.32371134, y: null}, {x: 0.620629371, y: null}, {x: 0.0805718, y: null}, {x: 0.130406714, y: null}, {x: 0.520257827, y: null}, {x: 0.245901639, y: null}, {x: 0.378537736, y: null}, {x: 0.301431801, y: null}, {x: 0.752407932, y: null}, {x: 0.41682243, y: 9.574524}, {x: 0.205658784, y: null}, {x: 0.549011178, y: null}, {x: 0.687575758, y: 17.33541}, {x: 0.405609493, y: null}, {x: 0.274444444, y: null}, {x: 0.44909688, y: null}, {x: 0.300794022, y: null}, {x: 0.442523768, y: null}, {x: 0.184029944, y: 19.605847}, {x: 0.272787758, y: null}, {x: 0.0997426, y: 0.363247}, {x: 0.042322835, y: null}, {x: 0.100963391, y: 51.7282}, {x: 0.285768937, y: null}, {x: 0.245523091, y: null}, {x: 0.06146789, y: null}, {x: 0.112774769, y: null}, {x: 0.016859852, y: null}, {x: 0.049342105, y: null}, {x: 0.049539986, y: null}, {x: 0.118327402, y: null}, {x: 0.180845644, y: null}, {x: 0.05481345, y: null}, {x: 0.142180095, y: null}, {x: 0.014583333, y: null}, {x: 0.029831388, y: null}, {x: 0.094653812, y: null}, {x: 0.041020966, y: null}, {x: 0.060908084, y: null}, {x: 0.034170854, y: null}, {x: 0.067763158, y: null}, {x: 0.056047198, y: null}, {x: 0.02507837, y: null}, {x: 0.017660044, y: null}, {x: 0.234642498, y: null}, {x: 0.122203098, y: null}, {x: 0.080864692, y: null}, {x: 0.037037037, y: null}, {x: 0.069269039, y: null}, {x: 0.134584013, y: null}, {x: 0.1411161, y: null}, {x: 0.075289575, y: null}, {x: 0.042492918, y: null}, {x: 0.233123312, y: null}, {x: 0.166944908, y: null}, {x: 0.012972973, y: null}, {x: 0.192660551, y: null}, {x: 0.164259928, y: null}, {x: 0.098230628, y: null}, {x: 0.222077922, y: null}, {x: 0.038383838, y: null}, {x: 0.03864279, y: null}, {x: 0.157419937, y: null}, {x: 0.061688312, y: null}, {x: 0.164593301, y: null}, {x: 0.024082569, y: null}, {x: 0.026863085, y: null}, {x: 0.062639821, y: null}, {x: 0.0, y: null}, {x: 0.026380874, y: null}, {x: 0.176232821, y: null}, {x: 0.025062657, y: null}, {x: 0.035267349, y: null}, {x: 0.0, y: null}, {x: 0.091079812, y: null}, {x: 0.086046512, y: null}, {x: 0.070696721, y: null}, {x: 0.082269504, y: null}, {x: 0.071078431, y: null}, {x: 0.04427334, y: null}, {x: 0.014728682, y: null}, {x: 0.092031425, y: null}, {x: 0.029946164, y: null}, {x: 0.042050691, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.096975089, y: null}, {x: 0.08185654, y: null}, {x: 0.046116505, y: null}, {x: 0.105202312, y: null}, {x: 0.041593439, y: null}, {x: 0.037073171, y: null}, {x: 0.073185012, y: null}, {x: 0.081282625, y: null}, {x: 0.120667523, y: null}, {x: 0.047932331, y: null}, {x: 0.097491039, y: null}, {x: 0.167030568, y: null}, {x: 0.071713147, y: null}, {x: 0.084074373, y: null}, {x: 0.115323855, y: null}, {x: 0.122874807, y: null}, {x: 0.0, y: null}, {x: 0.050304878, y: null}, {x: 0.085855032, y: null}, {x: 0.080824972, y: null}, {x: 0.131991052, y: null}, {x: 0.212686567, y: null}, {x: 0.081717452, y: 0.751364}, {x: 0.226337449, y: null}, {x: 0.134129214, y: null}, {x: 0.035294118, y: null}, {x: 0.005688282, y: null}, {x: 0.145128205, y: 0.6538919999999999}, {x: 0.03526971, y: null}, {x: 0.029548989, y: null}, {x: 0.062048193, y: null}, {x: 0.192, y: null}, {x: 0.232647815, y: null}, {x: 0.155767818, y: null}, {x: 0.116144019, y: null}, {x: 0.065994962, y: null}, {x: 0.097826087, y: null}, {x: 0.125, y: null}, {x: 0.127516779, y: null}, {x: 0.2258314, y: null}, {x: 0.068089431, y: null}, {x: 0.113226453, y: null}, {x: 0.021949078, y: null}, {x: 0.111716621, y: null}, {x: 0.074856046, y: null}, {x: 0.203816794, y: null}, {x: 0.02247191, y: null}, {x: 0.106024096, y: null}, {x: 0.036053131, y: null}, {x: 0.145408163, y: null}, {x: 0.095465394, y: null}, {x: 0.327979713, y: null}, {x: 0.066790353, y: null}, {x: 0.407171315, y: null}, {x: 0.078947368, y: null}, {x: 0.090389016, y: null}, {x: 0.089712919, y: null}, {x: 0.029233315, y: null}, {x: 0.078692494, y: null}, {x: 0.139742319, y: null}, {x: 0.09310987, y: null}, {x: 0.132786885, y: null}, {x: 0.666068223, y: null}, {x: 0.859778598, y: null}, {x: 0.468637347, y: null}, {x: 0.737354988, y: null}, {x: 0.713888889, y: 19.621000000000002}, {x: 0.574813812, y: null}, {x: 0.830940989, y: null}, {x: 0.622109827, y: null}, {x: 0.939347991, y: null}, {x: 0.603592814, y: null}, {x: 0.532026144, y: null}, {x: 0.579908676, y: null}, {x: 0.741660752, y: null}, {x: 0.709973046, y: null}, {x: 0.839224629, y: null}, {x: 0.364485981, y: null}, {x: 0.549155146, y: null}, {x: 0.665835412, y: null}, {x: 0.635145784, y: null}, {x: 0.794098361, y: null}, {x: 0.878336756, y: null}, {x: 0.796190476, y: null}, {x: 0.902504472, y: null}, {x: 0.607602339, y: null}, {x: 0.905444126, y: null}, {x: 0.996319018, y: null}, {x: 0.94701087, y: null}, {x: 0.993730408, y: null}, {x: 0.978021978, y: 37.631}, {x: 0.912572856, y: null}, {x: 0.988183161, y: null}, {x: 0.960207613, y: null}, {x: 0.88988764, y: null}, {x: 0.909340659, y: null}, {x: 0.816209317, y: 739.527068}, {x: 0.75273224, y: null}, {x: 0.977695167, y: null}, {x: 0.929032258, y: null}, {x: 0.874678112, y: null}, {x: 0.812627291, y: null}, {x: 0.989616613, y: null}, {x: 0.943625325, y: null}, {x: 0.841968912, y: null}, {x: 0.758928571, y: null}, {x: 1.0, y: null}, {x: 0.85170068, y: null}, {x: 0.818696884, y: null}, {x: 0.755304102, y: null}, {x: 0.54144385, y: null}, {x: 0.928794992, y: null}, {x: 0.828541001, y: null}, {x: 0.905699482, y: null}, {x: 0.890428212, y: null}, {x: 0.699331849, y: null}, {x: 0.907456724, y: null}, {x: 0.721938776, y: null}, {x: 0.719759926, y: null}, {x: 0.576826197, y: null}, {x: 0.412039197, y: null}, {x: 0.409162717, y: null}, {x: 0.401221996, y: null}, {x: 0.719214753, y: null}, {x: 0.615582506, y: null}, {x: 0.506289308, y: null}, {x: 0.457305503, y: null}, {x: 0.691776089, y: null}, {x: 0.348007414, y: null}, {x: 0.322754895, y: null}, {x: 0.293984962, y: null}, {x: 0.771888726, y: null}, {x: 0.374476987, y: null}, {x: 0.271912351, y: null}, {x: 0.98022356, y: null}, {x: 0.794626866, y: null}, {x: 0.994732221, y: null}, {x: 0.964611872, y: null}, {x: 0.183394161, y: null}, {x: 0.641163793, y: null}, {x: 0.927821522, y: null}, {x: 0.937165775, y: null}, {x: 0.558227848, y: null}, {x: 1.0, y: null}, {x: 0.911976912, y: null}, {x: 0.862837046, y: 27.040660999999997}, {x: 0.966568338, y: 81.680767}, {x: 0.844005778, y: null}, {x: 0.81284153, y: null}, {x: 0.77037037, y: null}, {x: 1.0, y: 198.331469}, {x: 0.811864407, y: null}, {x: 1.0, y: null}, {x: 0.754397835, y: null}, {x: 0.675422139, y: null}, {x: 0.376344086, y: null}, {x: 0.091891892, y: null}, {x: 0.476510067, y: null}, {x: 0.520172911, y: null}, {x: 0.919381108, y: 7.279}, {x: 0.766588603, y: null}, {x: 0.74893617, y: null}, {x: 0.685099846, y: null}, {x: 0.873223422, y: null}, {x: 0.806111697, y: null}, {x: 0.912801484, y: null}, {x: 0.916903409, y: null}, {x: 0.141498216, y: null}, {x: 0.211065574, y: null}, {x: 0.424207493, y: null}, {x: 0.262195122, y: null}, {x: 0.39589169, y: null}, {x: 0.182926829, y: null}, {x: 0.477832512, y: null}, {x: 0.656934307, y: null}, {x: 0.615486433, y: null}, {x: 0.577946768, y: null}, {x: 0.231316726, y: null}, {x: 0.751758087, y: null}, {x: 0.670623145, y: null}, {x: 0.827805222, y: null}, {x: 0.783199506, y: null}, {x: 0.615036232, y: null}, {x: 0.266241299, y: null}, {x: 0.175464143, y: null}, {x: 0.0, y: null}, {x: 0.251574657, y: null}, {x: 0.23653088, y: null}, {x: 0.129602356, y: null}, {x: 0.133093525, y: null}, {x: 0.0, y: null}, {x: 0.055594163, y: null}, {x: 0.27632951, y: null}, {x: 0.358490566, y: null}, {x: 0.196682465, y: null}, {x: 0.101513802, y: null}, {x: 0.087949743, y: null}, {x: 0.179837676, y: null}, {x: 0.065782764, y: null}, {x: 0.133580705, y: null}, {x: 0.346660995, y: null}, {x: 0.079715864, y: null}, {x: 0.052268506, y: null}, {x: 0.0, y: null}, {x: 0.176470588, y: null}, {x: 0.524048096, y: null}, {x: 0.030247141, y: null}, {x: 0.466400911, y: 1.005625}, {x: 0.274074074, y: null}, {x: 0.421518055, y: null}, {x: 0.32, y: null}, {x: 0.437592868, y: null}, {x: 0.430389817, y: 21.590654999999998}, {x: 0.580169972, y: 2.36377}, {x: 0.240875912, y: null}, {x: 0.569482289, y: 69.454067}, {x: 0.652968037, y: null}, {x: 0.121621622, y: null}, {x: 0.558648111, y: null}, {x: 0.45490982, y: null}, {x: 0.429160935, y: null}, {x: 0.18018018, y: null}, {x: 0.053133515, y: null}, {x: 0.100247525, y: null}, {x: 0.305327869, y: 4.023005}, {x: 0.215180545, y: null}, {x: 0.604985618, y: 15.273601}, {x: 0.548532731, y: null}, {x: 0.165534805, y: null}, {x: 0.631853786, y: null}, {x: 0.360091743, y: null}, {x: 0.505222437, y: 17.667698}, {x: 0.251160392, y: 130.09780700000002}, {x: 0.61027668, y: null}, {x: 0.0, y: null}, {x: 0.078554595, y: null}, {x: 0.523061825, y: null}, {x: 0.014662757, y: null}, {x: 0.297581493, y: null}, {x: 0.048259494, y: null}, {x: 0.184351145, y: 98.279335}, {x: 0.382911392, y: 0.465397}, {x: 0.0, y: null}, {x: 0.22, y: null}, {x: 0.397677794, y: null}, {x: 0.105067064, y: null}, {x: 0.113049096, y: null}, {x: 0.959605027, y: null}, {x: 0.963369963, y: null}, {x: 0.969387755, y: null}, {x: 0.956435644, y: null}, {x: 0.960204082, y: null}, {x: 0.926729986, y: 1.850684}, {x: 0.811279827, y: null}, {x: 0.975415282, y: null}, {x: 0.856299213, y: 211.675397}, {x: 0.858793325, y: null}, {x: 0.932656827, y: null}, {x: 0.558935361, y: null}, {x: 0.532241556, y: null}, {x: 0.386792453, y: null}, {x: 0.484396201, y: null}, {x: 0.257377049, y: 106.444359}, {x: 0.344457688, y: 2.454447}, {x: 0.279470199, y: null}, {x: 0.896103896, y: null}, {x: 0.791120081, y: null}, {x: 0.68814433, y: null}, {x: 0.13943662, y: null}, {x: 0.584837545, y: null}, {x: 0.152477764, y: null}, {x: 0.688147296, y: null}, {x: 0.219414894, y: null}, {x: 0.175746092, y: null}, {x: 0.107717042, y: null}, {x: 0.351125065, y: null}, {x: 0.371471025, y: 617.717181}, {x: 0.560286104, y: 0.620762}, {x: 0.644736842, y: null}, {x: 0.493927126, y: null}, {x: 0.55771725, y: null}, {x: 0.272727273, y: null}, {x: 0.446285714, y: null}, {x: 0.255829904, y: null}, {x: 0.125845738, y: null}, {x: 0.289340102, y: null}, {x: 0.186282811, y: null}, {x: 0.331491713, y: null}, {x: 0.479510378, y: null}, {x: 0.100867679, y: null}, {x: 0.208393632, y: null}, {x: 0.731759657, y: null}, {x: 0.083188908, y: null}, {x: 0.716853933, y: null}, {x: 0.296137339, y: null}, {x: 0.068448501, y: null}, {x: 0.065536723, y: null}, {x: 0.039503386, y: null}, {x: 0.144208038, y: null}, {x: 0.583662714, y: null}, {x: 0.122153209, y: null}, {x: 0.083102493, y: null}, {x: 0.225667939, y: null}, {x: 0.193456615, y: null}, {x: 0.026851098, y: null}, {x: 0.109311741, y: null}, {x: 0.57129923, y: null}, {x: 0.0, y: null}, {x: 0.153926338, y: null}, {x: 0.170827858, y: null}, {x: 0.134932534, y: null}, {x: 0.032445923, y: null}, {x: 0.160023795, y: null}, {x: 0.088263822, y: null}, {x: 0.326013514, y: null}, {x: 0.139669422, y: null}, {x: 0.224238876, y: null}, {x: 0.420615129, y: null}, {x: 0.389183457, y: null}, {x: 0.225772098, y: null}, {x: 0.12687813, y: null}, {x: 0.128164557, y: null}, {x: 0.072142064, y: null}, {x: 0.091920375, y: null}, {x: 0.071469411, y: null}, {x: 0.073937153, y: null}, {x: 0.073094868, y: null}, {x: 0.221294363, y: null}, {x: 0.104707435, y: null}, {x: 0.164637374, y: null}, {x: 0.135341212, y: null}, {x: 0.013571429, y: null}, {x: 0.046906866, y: null}, {x: 0.11247216, y: null}, {x: 0.126353791, y: null}, {x: 0.091073583, y: null}, {x: 0.067447046, y: null}, {x: 0.047466325, y: null}, {x: 0.102736653, y: null}, {x: 0.046249295, y: null}, {x: 0.127516779, y: null}, {x: 0.055292259, y: null}, {x: 0.092124814, y: null}, {x: 0.070581897, y: null}, {x: 0.218259629, y: null}, {x: 0.041054232, y: null}, {x: 0.083183453, y: null}, {x: 0.049350649, y: null}, {x: 0.170998632, y: null}, {x: 0.126258714, y: null}, {x: 0.04781491, y: null}, {x: 0.156842105, y: null}, {x: 0.28345679, y: null}, {x: 0.09062694, y: null}, {x: 0.150380339, y: null}, {x: 0.223846154, y: 385.927118}, {x: 0.086538462, y: 2.816}, {x: 0.084101807, y: null}, {x: 0.233801541, y: null}, {x: 0.001374256, y: null}, {x: 0.205357143, y: null}, {x: 0.16375345, y: null}, {x: 0.09386121, y: null}, {x: 0.213498015, y: null}, {x: 0.066517608, y: null}, {x: 0.13476874, y: null}, {x: 0.31184669, y: null}, {x: 0.0, y: null}, {x: 0.199457259, y: null}, {x: 0.153046764, y: null}, {x: 0.085403727, y: null}, {x: 0.145624103, y: null}, {x: 0.272268908, y: null}, {x: 0.016836509, y: null}, {x: 0.172516065, y: null}, {x: 0.192686357, y: null}, {x: 0.082211198, y: null}, {x: 0.0, y: null}, {x: 0.1056231, y: null}, {x: 0.189381933, y: null}, {x: 0.0, y: null}, {x: 0.073916409, y: null}, {x: 0.163109756, y: null}, {x: 0.063419118, y: null}, {x: 0.138977636, y: null}, {x: 0.272121789, y: null}, {x: 0.107692308, y: null}, {x: 0.101687389, y: null}, {x: 0.025847214, y: null}, {x: 0.025522042, y: null}, {x: 0.087609512, y: null}, {x: 0.102793296, y: null}, {x: 0.025792189, y: null}, {x: 0.065130261, y: null}, {x: 0.104951959, y: null}, {x: 0.048465267, y: null}, {x: 0.27791361, y: null}, {x: 0.006405124, y: null}, {x: 0.057109557, y: null}, {x: 0.066704036, y: null}, {x: 0.034074074, y: null}, {x: 0.082294264, y: null}, {x: 0.043219076, y: null}, {x: 0.00128866, y: null}, {x: 0.285781991, y: null}, {x: 0.083300589, y: null}, {x: 0.110504097, y: null}, {x: 0.13984375, y: null}, {x: 0.100474684, y: null}, {x: 0.0, y: null}, {x: 0.137073171, y: null}, {x: 0.082846522, y: null}, {x: 0.229588705, y: null}, {x: 0.00693909, y: null}, {x: 0.272848863, y: null}, {x: 0.564356436, y: null}, {x: 0.278772379, y: null}, {x: 0.213219616, y: null}, {x: 0.395305164, y: null}, {x: 0.379338295, y: null}, {x: 0.271004422, y: null}, {x: 0.035409035, y: null}, {x: 0.455334988, y: null}, {x: 0.079084967, y: null}, {x: 0.205537806, y: null}, {x: 0.361185984, y: null}, {x: 0.196330275, y: null}, {x: 0.405008166, y: null}, {x: 0.353893601, y: null}, {x: 0.467845659, y: null}, {x: 0.078101072, y: null}, {x: 0.10318792, y: null}, {x: 0.229373903, y: null}, {x: 0.499171728, y: null}, {x: 0.706864564, y: null}, {x: 0.395192308, y: null}, {x: 0.027865405, y: null}, {x: 0.021367521, y: null}, {x: 0.097174658, y: null}, {x: 0.082474227, y: null}, {x: 0.102493075, y: null}, {x: 0.081267218, y: null}, {x: 0.136107499, y: null}, {x: 0.113018598, y: null}, {x: 0.150882825, y: null}, {x: 0.066853343, y: null}, {x: 0.084639498, y: null}, {x: 0.435692034, y: null}, {x: 0.118721461, y: null}, {x: 0.186781609, y: null}, {x: 0.073194857, y: null}, {x: 0.070599613, y: null}, {x: 0.049403748, y: null}, {x: 0.016205267, y: 0.45}, {x: 0.220447284, y: null}, {x: 0.127737226, y: null}, {x: 0.185520362, y: null}, {x: 0.068365444, y: null}, {x: 0.103202847, y: null}, {x: 0.275950999, y: null}, {x: 0.148340249, y: null}, {x: 0.268025078, y: null}, {x: 0.090728477, y: null}, {x: 0.043799472, y: null}, {x: 0.111570248, y: null}, {x: 0.359516616, y: null}, {x: 0.166361974, y: null}, {x: 0.113030417, y: null}, {x: 0.202947846, y: null}, {x: 0.34056055, y: null}, {x: 0.6, y: null}, {x: 0.226250907, y: null}, {x: 0.103977669, y: null}, {x: 0.104134763, y: null}, {x: 0.134596211, y: null}, {x: 0.34949495, y: null}, {x: 0.097604259, y: null}, {x: 0.099537037, y: null}, {x: 0.14321075, y: null}, {x: 0.014985015, y: 5e-05}, {x: 0.18328841, y: null}, {x: 0.0, y: null}, {x: 0.020985401, y: null}, {x: 0.082198215, y: null}, {x: 0.086255259, y: null}, {x: 0.007885305, y: null}, {x: 0.262195122, y: null}, {x: 0.176043557, y: null}, {x: 0.34184514, y: null}, {x: 0.047169811, y: null}, {x: 0.17136958, y: null}, {x: 0.124248497, y: null}, {x: 0.18833652, y: null}, {x: 0.119771863, y: null}, {x: 0.158560959, y: null}, {x: 0.040250098, y: null}, {x: 0.051444679, y: null}, {x: 0.081424936, y: null}, {x: 0.058710913, y: null}, {x: 0.070114943, y: null}, {x: 0.000951475, y: null}, {x: 0.055979644, y: null}, {x: 0.032198712, y: null}, {x: 0.107988166, y: null}, {x: 0.042051282, y: null}, {x: 0.051079137, y: null}, {x: 0.030760626, y: null}, {x: 0.099214847, y: null}, {x: 0.185280494, y: null}, {x: 0.12631579, y: null}, {x: 0.233223322, y: null}, {x: 0.086890244, y: null}, {x: 0.044176707, y: null}, {x: 0.108650519, y: null}, {x: 0.625776398, y: null}, {x: 0.4303233, y: null}, {x: 0.243303571, y: null}, {x: 0.504125413, y: null}, {x: 0.305470191, y: null}, {x: 0.670188679, y: null}, {x: 0.4140625, y: null}, {x: 0.810711665, y: 2479.88946}, {x: 0.470477976, y: null}, {x: 0.494542974, y: null}, {x: 0.361378611, y: null}, {x: 0.735710796, y: null}, {x: 0.268716578, y: null}, {x: 0.497810219, y: null}, {x: 0.206703911, y: null}, {x: 0.580128205, y: null}, {x: 0.586387435, y: 482.90002}, {x: 0.501577287, y: null}, {x: 0.392857143, y: 67.833}, {x: 0.405897114, y: null}, {x: 0.566808511, y: null}, {x: 0.556089044, y: null}, {x: 0.290715373, y: null}, {x: 0.229755179, y: null}, {x: 0.553303608, y: null}, {x: 0.140516698, y: null}, {x: 0.163170163, y: null}, {x: 0.55213436, y: null}, {x: 0.595913734, y: null}, {x: 0.344072165, y: 55.29}, {x: 0.494425864, y: null}, {x: 0.588762215, y: null}, {x: 0.575929427, y: null}, {x: 0.790583275, y: null}, {x: 0.817023741, y: null}, {x: 0.686567164, y: null}, {x: 0.721368715, y: null}, {x: 0.77232581, y: null}, {x: 0.412192903, y: null}, {x: 0.744908896, y: null}, {x: 0.576190476, y: null}, {x: 0.658415842, y: null}, {x: 0.372239748, y: null}, {x: 0.634978992, y: null}, {x: 0.594638505, y: null}, {x: 0.296102385, y: null}, {x: 0.710313448, y: null}, {x: 0.187766714, y: null}, {x: 0.669319187, y: null}, {x: 0.605442177, y: null}, {x: 0.730275229, y: null}, {x: 0.88056872, y: null}, {x: 0.845993757, y: null}, {x: 0.794520548, y: null}, {x: 0.54845089, y: null}, {x: 0.781463928, y: null}, {x: 0.612634088, y: null}, {x: 0.704942966, y: null}, {x: 0.451371571, y: null}, {x: 0.611080022, y: null}, {x: 0.506493507, y: null}, {x: 0.500699301, y: null}, {x: 0.648580968, y: null}, {x: 0.504828797, y: null}, {x: 0.552493438, y: null}, {x: 0.548463357, y: null}, {x: 0.380503145, y: null}, {x: 0.354685647, y: null}, {x: 0.104050279, y: null}, {x: 0.23015873, y: null}, {x: 0.415037594, y: 199.24}, {x: 0.526806527, y: null}, {x: 0.150976909, y: 654.51638}, {x: 0.081784387, y: null}, {x: 0.46539961, y: null}, {x: 0.283392585, y: null}, {x: 0.394270123, y: null}, {x: 0.091129032, y: null}, {x: 0.350628294, y: null}, {x: 0.119047619, y: null}, {x: 0.093260722, y: null}, {x: 0.134637514, y: null}, {x: 0.305491991, y: null}, {x: 0.137418756, y: null}, {x: 0.259615385, y: null}, {x: 0.206148282, y: null}, {x: 0.123065308, y: null}, {x: 0.323278921, y: null}, {x: 0.371923428, y: null}, {x: 0.064330844, y: null}, {x: 0.187034277, y: null}, {x: 0.09895547, y: null}, {x: 0.214765101, y: null}, {x: 0.156366344, y: null}, {x: 0.27265745, y: null}, {x: 0.023121387, y: null}, {x: 0.147362697, y: null}, {x: 0.126470588, y: null}, {x: 0.203180212, y: null}, {x: 0.298004988, y: null}, {x: 0.088690937, y: null}, {x: 0.123136389, y: null}, {x: 0.083667622, y: null}, {x: 0.157660739, y: null}, {x: 0.091808346, y: null}, {x: 0.174882126, y: null}, {x: 0.100961539, y: null}, {x: 0.090986395, y: null}, {x: 0.051638976, y: null}, {x: 0.075698925, y: null}, {x: 0.173723537, y: null}, {x: 0.101067616, y: null}, {x: 0.055643045, y: null}, {x: 0.134114583, y: null}, {x: 0.016129032, y: null}, {x: 0.475961539, y: null}, {x: 0.106666667, y: null}, {x: 0.013297872, y: null}, {x: 0.07421875, y: null}, {x: 0.055252918, y: null}, {x: 0.006044325, y: null}, {x: 0.141449683, y: null}, {x: 0.115492958, y: null}, {x: 0.029772329, y: null}, {x: 0.116802484, y: null}, {x: 0.044742729, y: null}, {x: 0.142139268, y: null}, {x: 0.093934911, y: null}, {x: 0.103255814, y: null}, {x: 0.090754877, y: null}, {x: 0.401069519, y: null}, {x: 0.169734151, y: null}, {x: 0.260122699, y: null}, {x: 0.535494327, y: null}, {x: 0.316568047, y: null}, {x: 0.018060201, y: null}, {x: 0.222490931, y: null}, {x: 0.295432459, y: null}, {x: 0.27752809, y: null}, {x: 0.224576271, y: null}, {x: 0.305376344, y: null}, {x: 0.011989101, y: null}, {x: 0.131648936, y: null}, {x: 0.552836485, y: null}, {x: 0.220881427, y: 396.4304}, {x: 0.03131524, y: null}, {x: 0.40967092, y: null}, {x: 0.17005988, y: null}, {x: 0.481234362, y: null}, {x: 0.391278727, y: null}, {x: 0.179205852, y: null}, {x: 0.221984297, y: null}, {x: 0.0691085, y: null}, {x: 0.249858677, y: null}, {x: 0.552872606, y: null}, {x: 0.049713193, y: null}, {x: 0.142937535, y: null}, {x: 0.067375887, y: null}, {x: 0.074641148, y: null}, {x: 0.063897764, y: null}, {x: 0.230122818, y: null}, {x: 0.111572392, y: null}, {x: 0.075578855, y: null}, {x: 0.201622248, y: null}, {x: 0.210282538, y: null}, {x: 0.360262009, y: null}, {x: 0.322089227, y: null}, {x: 0.273054755, y: null}, {x: 0.109810479, y: null}, {x: 0.327294686, y: null}, {x: 0.04622871, y: null}, {x: 0.0859375, y: null}, {x: 0.19243604, y: null}, {x: 0.067736185, y: null}, {x: 0.061049011, y: null}, {x: 0.594653573, y: null}, {x: 0.362873917, y: null}, {x: 0.291262136, y: null}, {x: 0.20498615, y: null}, {x: 0.29795022, y: null}, {x: 0.427745665, y: null}, {x: 0.158297612, y: null}, {x: 0.265428003, y: null}, {x: 0.339189189, y: null}, {x: 0.283116883, y: null}, {x: 0.318601583, y: null}, {x: 0.190318302, y: null}, {x: 0.098099326, y: null}, {x: 0.237961477, y: null}, {x: 0.086724209, y: null}, {x: 0.236474695, y: null}, {x: 0.239476678, y: null}, {x: 0.1629681, y: null}, {x: 0.129107981, y: null}, {x: 0.660637792, y: null}, {x: 0.330578512, y: null}, {x: 0.300610094, y: null}, {x: 0.032069971, y: null}, {x: 0.247815231, y: null}, {x: 0.580364212, y: null}, {x: 0.335894621, y: null}, {x: 0.255499154, y: null}, {x: 0.259661836, y: null}, {x: 0.235410485, y: null}, {x: 0.565844579, y: null}, {x: 0.57573474, y: null}, {x: 0.42234957, y: null}, {x: 0.147557841, y: null}, {x: 0.231820185, y: null}, {x: 0.387111517, y: null}, {x: 0.529156328, y: null}, {x: 0.316777711, y: null}, {x: 0.30511022, y: null}, {x: 0.248429867, y: null}, {x: 0.426433915, y: null}, {x: 0.422315537, y: null}, {x: 0.144502618, y: null}, {x: 0.208754209, y: null}, {x: 0.511163337, y: null}, {x: 0.286984127, y: null}, {x: 0.128423041, y: null}, {x: 0.211583924, y: null}, {x: 0.076095311, y: null}, {x: 0.158295964, y: null}, {x: 0.136226902, y: null}, {x: 0.265976872, y: null}, {x: 0.123474515, y: null}, {x: 0.446022727, y: null}, {x: 0.054071661, y: null}, {x: 0.071776156, y: null}, {x: 0.090050378, y: null}, {x: 0.0, y: null}, {x: 0.223326706, y: null}, {x: 0.03635586, y: null}, {x: 0.275534442, y: null}, {x: 0.326836582, y: null}, {x: 0.154453213, y: null}, {x: 0.205063291, y: null}, {x: 0.098650927, y: null}, {x: 0.075135135, y: null}, {x: 0.067017083, y: null}, {x: 0.059251559, y: null}, {x: 0.16097561, y: null}, {x: 0.185833333, y: null}, {x: 0.138705416, y: null}, {x: 0.154738878, y: null}, {x: 0.044871795, y: null}, {x: 0.14690027, y: null}, {x: 0.338028169, y: null}, {x: 0.52246696, y: null}, {x: 0.172413793, y: null}, {x: 0.115021459, y: null}, {x: 0.141581633, y: null}, {x: 0.106082037, y: null}, {x: 0.0, y: null}, {x: 0.12150838, y: null}, {x: 0.209925558, y: null}, {x: 0.082863341, y: null}, {x: 0.032795699, y: null}, {x: 0.023573201, y: null}, {x: 0.10982659, y: null}, {x: 0.14940239, y: null}, {x: 0.284820921, y: null}, {x: 0.112531969, y: null}, {x: 0.123175183, y: null}, {x: 0.065587381, y: null}, {x: 0.0625, y: null}, {x: 0.094403237, y: null}, {x: 0.050838841, y: null}, {x: 0.121404557, y: null}, {x: 0.116161616, y: null}, {x: 0.088031652, y: null}, {x: 0.049612949, y: null}, {x: 0.155812832, y: null}, {x: 0.235803657, y: null}, {x: 0.128851541, y: null}, {x: 0.087979094, y: null}, {x: 0.123535156, y: null}, {x: 0.028231798, y: null}, {x: 0.054859869, y: null}, {x: 0.123129543, y: null}, {x: 0.063233966, y: null}, {x: 0.123695976, y: null}, {x: 0.071623465, y: null}, {x: 0.132102273, y: null}, {x: 0.292043985, y: null}, {x: 0.090135203, y: null}, {x: 0.209802236, y: null}, {x: 0.169030733, y: null}, {x: 0.03007798, y: null}, {x: 0.207064555, y: null}, {x: 0.437000615, y: null}, {x: 0.218721461, y: null}, {x: 0.226645645, y: null}, {x: 0.172794118, y: null}, {x: 0.457156091, y: null}, {x: 0.145067698, y: null}, {x: 0.102296451, y: null}, {x: 0.498461539, y: null}, {x: 0.314540059, y: null}, {x: 0.150605886, y: null}, {x: 0.0, y: null}, {x: 0.306491372, y: null}, {x: 0.317115552, y: null}, {x: 0.241590214, y: null}, {x: 0.040730337, y: null}, {x: 0.140350877, y: null}, {x: 0.101250504, y: null}, {x: 0.507946599, y: null}, {x: 0.0, y: null}, {x: 0.152058111, y: null}, {x: 0.181583477, y: null}, {x: 0.487315011, y: null}, {x: 0.036982249, y: null}, {x: 0.204022989, y: null}, {x: 0.335982659, y: null}, {x: 0.129537367, y: null}, {x: 0.136276392, y: null}, {x: 0.192818111, y: null}, {x: 0.071604938, y: null}, {x: 0.259124088, y: null}, {x: 0.147353362, y: null}, {x: 0.130052724, y: null}, {x: 0.28827425, y: null}, {x: 0.175318315, y: null}, {x: 0.369326326, y: null}, {x: 0.160484482, y: null}, {x: 0.350442478, y: null}, {x: 0.599537037, y: null}, {x: 0.28042328, y: null}, {x: 0.259890444, y: null}, {x: 0.362240289, y: null}, {x: 0.129272568, y: null}, {x: 0.0390625, y: null}, {x: 0.149967679, y: null}, {x: 0.303797468, y: null}, {x: 0.023033708, y: null}, {x: 0.016806723, y: null}, {x: 0.170568562, y: null}, {x: 0.122352941, y: null}, {x: 0.039341263, y: null}, {x: 0.109647059, y: null}, {x: 0.08716707, y: null}, {x: 0.198654941, y: null}, {x: 0.061937716, y: null}, {x: 0.065693431, y: null}, {x: 0.115135135, y: null}, {x: 0.03237858, y: null}, {x: 0.3459281, y: null}, {x: 0.0, y: null}, {x: 0.19138756, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004470939, y: null}, {x: 0.212520593, y: null}, {x: 0.0, y: null}, {x: 0.213178295, y: null}, {x: 0.0, y: null}, {x: 0.077809798, y: null}, {x: 0.116010855, y: null}, {x: 0.142269253, y: null}, {x: 0.111382511, y: null}, {x: 0.098050797, y: null}, {x: 0.274478331, y: null}, {x: 0.137691238, y: null}, {x: 0.019138756, y: null}, {x: 0.077114428, y: null}, {x: 0.03634277, y: null}, {x: 0.184977579, y: null}, {x: 0.161616162, y: null}, {x: 0.144869215, y: null}, {x: 0.115196078, y: null}, {x: 0.29407566, y: null}, {x: 0.048228346, y: null}, {x: 0.034901366, y: null}, {x: 0.278867102, y: null}, {x: 0.0, y: null}, {x: 0.125, y: null}, {x: 0.083916084, y: null}, {x: 0.027110767, y: null}, {x: 0.17612978, y: null}, {x: 0.139183056, y: null}, {x: 0.019417476, y: null}, {x: 0.169364882, y: null}, {x: 0.037953795, y: null}, {x: 0.027924131, y: null}, {x: 0.092071611, y: null}, {x: 0.156435644, y: null}, {x: 0.217362492, y: null}, {x: 0.178988327, y: null}, {x: 0.61260274, y: null}, {x: 0.172613308, y: null}, {x: 0.159090909, y: null}, {x: 0.391891892, y: null}, {x: 0.3625, y: null}, {x: 0.22298066, y: null}, {x: 0.221126761, y: null}, {x: 0.142621599, y: null}, {x: 0.28998779, y: null}, {x: 0.082200647, y: null}, {x: 0.134475748, y: null}, {x: 0.117724868, y: null}, {x: 0.084556962, y: null}, {x: 0.059633028, y: null}, {x: 0.385915493, y: null}, {x: 0.100802855, y: null}, {x: 0.095906433, y: null}, {x: 0.034320639, y: null}, {x: 0.255776892, y: null}, {x: 0.309927361, y: null}, {x: 0.095238095, y: null}, {x: 0.171026157, y: null}, {x: 0.221621622, y: null}, {x: 0.055137845, y: null}, {x: 0.295910781, y: null}, {x: 0.221646517, y: null}, {x: 0.252659575, y: null}, {x: 0.378600823, y: null}, {x: 0.455370651, y: null}, {x: 0.10989011, y: null}, {x: 0.159634318, y: null}, {x: 0.066920152, y: null}, {x: 0.183700735, y: null}, {x: 0.276501112, y: null}, {x: 0.274838013, y: null}, {x: 0.346287703, y: null}, {x: 0.131021195, y: null}, {x: 0.191799861, y: null}, {x: 0.164594002, y: null}, {x: 0.220675944, y: null}, {x: 0.239422085, y: null}, {x: 0.113772455, y: null}, {x: 0.477117819, y: null}, {x: 0.148648649, y: null}, {x: 0.182078853, y: null}, {x: 0.046747967, y: null}, {x: 0.282539683, y: null}, {x: 0.146634615, y: null}, {x: 0.082309582, y: null}, {x: 0.26223092, y: null}, {x: 0.093004769, y: null}, {x: 0.129836629, y: null}, {x: 0.367276888, y: null}, {x: 0.355329949, y: null}, {x: 0.614285714, y: null}, {x: 0.159090909, y: null}, {x: 0.309612984, y: null}, {x: 0.056047198, y: null}, {x: 0.265486726, y: null}, {x: 0.31530343, y: null}, {x: 0.219877468, y: null}, {x: 0.340080972, y: null}, {x: 0.103184713, y: null}, {x: 0.115264798, y: null}, {x: 0.163120567, y: null}, {x: 0.374045802, y: null}, {x: 0.118867925, y: null}, {x: 0.592931937, y: null}, {x: 0.479779412, y: null}, {x: 0.40797546, y: null}, {x: 0.541989279, y: null}, {x: 0.281818182, y: null}, {x: 0.492907801, y: null}, {x: 0.412844037, y: null}, {x: 0.176886793, y: 68.97}, {x: 0.35326087, y: null}, {x: 0.518153295, y: null}, {x: 0.518617021, y: null}, {x: 0.305354559, y: null}, {x: 0.737541528, y: null}, {x: 0.106936416, y: null}, {x: 0.384902144, y: null}, {x: 0.216466739, y: null}, {x: 0.575528701, y: null}, {x: 0.10059761, y: null}, {x: 0.277856135, y: null}, {x: 0.144736842, y: null}, {x: 0.420344054, y: null}, {x: 0.401459854, y: null}, {x: 0.317577548, y: null}, {x: 0.432971015, y: null}, {x: 0.302484472, y: null}, {x: 0.502296451, y: null}, {x: 0.131878558, y: null}, {x: 0.293457944, y: null}, {x: 0.289705882, y: null}, {x: 0.515422441, y: null}, {x: 0.582990398, y: null}, {x: 0.6084172, y: null}, {x: 0.430502975, y: null}, {x: 0.456925116, y: null}, {x: 0.044362292, y: null}, {x: 0.671493902, y: null}, {x: 0.395071542, y: null}, {x: 0.576335878, y: null}, {x: 0.267900241, y: null}, {x: 0.828983517, y: null}, {x: 0.796267496, y: null}, {x: 0.799184044, y: null}, {x: 0.84992343, y: null}, {x: 0.731019523, y: null}, {x: 0.374351371, y: null}, {x: 0.444067797, y: null}, {x: 0.707037643, y: null}, {x: 0.718248175, y: null}, {x: 0.688563327, y: null}, {x: 0.674258475, y: null}, {x: 0.032231405, y: null}, {x: 0.78255814, y: null}, {x: 0.734068628, y: null}, {x: 0.661971831, y: null}, {x: 0.758853288, y: null}, {x: 0.666963491, y: null}, {x: 0.641925777, y: null}, {x: 0.324032403, y: null}, {x: 0.411968777, y: null}, {x: 0.517911975, y: null}, {x: 0.341836735, y: null}, {x: 0.46993007, y: null}, {x: 0.571830986, y: null}, {x: 0.453637661, y: null}, {x: 0.574983628, y: null}, {x: 0.532983508, y: null}, {x: 0.579912024, y: null}, {x: 0.56713615, y: null}, {x: 0.605245461, y: null}, {x: 0.65212528, y: null}, {x: 0.923493045, y: null}, {x: 0.876507754, y: null}, {x: 0.560779817, y: null}, {x: 0.207246377, y: null}, {x: 0.464190981, y: null}, {x: 0.431083381, y: null}, {x: 0.515789474, y: null}, {x: 0.655963303, y: null}, {x: 0.667422525, y: null}, {x: 0.396350365, y: null}, {x: 0.272511848, y: null}, {x: 0.516318887, y: null}, {x: 0.515609265, y: null}, {x: 0.602675059, y: null}, {x: 0.721714687, y: null}, {x: 0.741660202, y: null}, {x: 0.718281718, y: null}, {x: 0.618780096, y: null}, {x: 0.734313726, y: null}, {x: 0.407155026, y: null}, {x: 0.668717949, y: null}, {x: 0.418533605, y: null}, {x: 0.616371411, y: null}, {x: 0.767313019, y: null}, {x: 0.643095397, y: null}, {x: 0.625185185, y: null}, {x: 0.72706422, y: null}, {x: 0.744255319, y: null}, {x: 0.440241228, y: null}, {x: 0.622080679, y: null}, {x: 0.556372549, y: null}, {x: 0.63537415, y: null}, {x: 0.772651007, y: null}, {x: 0.606557377, y: null}, {x: 0.446389497, y: null}, {x: 0.777731443, y: null}, {x: 0.419548872, y: null}, {x: 0.0, y: null}, {x: 0.386536833, y: null}, {x: 0.56444218, y: null}, {x: 0.287428273, y: null}, {x: 0.604482132, y: null}, {x: 0.295918367, y: null}, {x: 0.623381877, y: null}, {x: 0.513906185, y: null}, {x: 0.195758564, y: null}, {x: 0.397735315, y: null}, {x: 0.52556391, y: null}, {x: 0.573728814, y: null}, {x: 0.18242831, y: null}, {x: 0.575060533, y: null}, {x: 0.491343776, y: null}, {x: 0.325977934, y: null}, {x: 0.250398724, y: null}, {x: 0.022792023, y: null}, {x: 0.545405112, y: null}, {x: 0.168631006, y: null}, {x: 0.269906929, y: null}, {x: 0.296381832, y: null}, {x: 0.413636364, y: null}, {x: 0.357927787, y: null}, {x: 0.158671587, y: null}, {x: 0.258098224, y: null}, {x: 0.041299559, y: null}, {x: 0.230936819, y: null}, {x: 0.097765363, y: null}, {x: 0.125792812, y: null}, {x: 0.360895386, y: null}, {x: 0.154545455, y: null}, {x: 0.307077626, y: null}, {x: 0.108033241, y: null}, {x: 0.077244259, y: null}, {x: 0.103020914, y: null}, {x: 0.120224719, y: null}, {x: 0.350978136, y: null}, {x: 0.543313709, y: null}, {x: 0.436901654, y: null}, {x: 0.186959937, y: null}, {x: 0.292079208, y: null}, {x: 0.073229292, y: null}, {x: 0.275015347, y: null}, {x: 0.247889486, y: null}, {x: 0.173461231, y: null}, {x: 0.135944701, y: null}, {x: 0.272207792, y: null}, {x: 0.376296296, y: null}, {x: 0.31459854, y: null}, {x: 0.164222874, y: null}, {x: 0.317220544, y: null}, {x: 0.18275154, y: null}, {x: 0.202154101, y: null}, {x: 0.448497854, y: null}, {x: 0.184772516, y: null}, {x: 0.405948553, y: null}, {x: 0.169306931, y: null}, {x: 0.129904098, y: null}, {x: 0.347428571, y: null}, {x: 0.261146497, y: null}, {x: 0.20376379, y: null}, {x: 0.446182728, y: null}, {x: 0.339922854, y: null}, {x: 0.308903366, y: null}, {x: 0.320463321, y: null}, {x: 0.661596958, y: null}, {x: 0.346938776, y: null}, {x: 0.528271406, y: null}, {x: 0.491902834, y: null}, {x: 0.490312966, y: null}, {x: 0.252487562, y: null}, {x: 0.585412668, y: null}, {x: 0.401647786, y: null}, {x: 0.499089253, y: null}, {x: 0.23880597, y: null}, {x: 0.264772727, y: null}, {x: 0.562657696, y: null}, {x: 0.607361963, y: null}, {x: 0.54491018, y: null}, {x: 0.52915952, y: null}, {x: 0.494871795, y: null}, {x: 0.454415954, y: 2.8}, {x: 0.434920635, y: null}, {x: 0.44345898, y: null}, {x: 0.3796875, y: null}, {x: 0.499515973, y: null}, {x: 0.53803681, y: null}, {x: 0.782488987, y: null}, {x: 0.311550152, y: null}, {x: 0.494296578, y: null}, {x: 0.208085612, y: null}, {x: 0.334935127, y: null}, {x: 0.320735444, y: null}, {x: 0.657445077, y: null}, {x: 0.472094214, y: null}, {x: 0.302325581, y: null}, {x: 0.179362507, y: null}, {x: 0.457473163, y: null}, {x: 0.277013753, y: null}, {x: 0.664921466, y: null}, {x: 0.448012846, y: null}, {x: 0.557729941, y: null}, {x: 0.526024363, y: null}, {x: 0.516544908, y: null}, {x: 0.248148148, y: null}, {x: 0.627408994, y: null}, {x: 0.240480962, y: null}, {x: 0.517220172, y: null}, {x: 0.331100479, y: null}, {x: 0.433952788, y: null}, {x: 0.444035346, y: null}, {x: 0.273517382, y: null}, {x: 0.461926374, y: null}, {x: 0.253648367, y: null}, {x: 0.215098242, y: null}, {x: 0.311276794, y: null}, {x: 0.399352751, y: null}, {x: 0.527310924, y: null}, {x: 0.593621399, y: null}, {x: 0.644830308, y: null}, {x: 0.292722813, y: null}, {x: 0.17585693, y: null}, {x: 0.26147427, y: null}, {x: 0.409395973, y: null}, {x: 0.659682899, y: null}, {x: 0.418455916, y: null}, {x: 0.18778626, y: null}, {x: 0.36934793, y: null}, {x: 0.385300668, y: null}, {x: 0.375831486, y: null}, {x: 0.21319797, y: 1.38}, {x: 0.19535284, y: null}, {x: 0.24929972, y: 3.71}, {x: 0.357392317, y: null}, {x: 0.571626298, y: null}, {x: 0.153046062, y: null}, {x: 0.208850932, y: null}, {x: 0.202739726, y: null}, {x: 0.252725471, y: null}, {x: 0.306990882, y: null}, {x: 0.293977813, y: null}, {x: 0.0, y: null}, {x: 0.407831325, y: null}, {x: 0.610091743, y: null}, {x: 0.381964809, y: null}, {x: 0.481997677, y: null}, {x: 0.368603643, y: null}, {x: 0.406901042, y: null}, {x: 0.286720322, y: null}, {x: 0.319413919, y: null}, {x: 0.573394495, y: null}, {x: 0.387722133, y: null}, {x: 0.541471963, y: null}, {x: 0.2104, y: null}, {x: 0.245122986, y: null}, {x: 0.966069746, y: null}, {x: 0.752317881, y: null}, {x: 0.441649899, y: null}, {x: 0.242375602, y: 1.975}, {x: 0.229329173, y: null}, {x: 0.174163783, y: null}, {x: 0.255635246, y: null}, {x: 0.271659325, y: 45.306}, {x: 0.455522972, y: null}, {x: 0.406447535, y: null}, {x: 0.0, y: null}, {x: 0.352852853, y: null}, {x: 0.154690619, y: null}, {x: 0.469187675, y: null}, {x: 0.174045802, y: null}, {x: 0.263649425, y: null}, {x: 0.209107807, y: null}, {x: 0.280471822, y: null}, {x: 0.0, y: null}, {x: 0.332987552, y: null}, {x: 0.198484849, y: null}, {x: 0.205780347, y: null}, {x: 0.22927242, y: null}, {x: 0.362629758, y: null}, {x: 0.313840156, y: null}, {x: 0.365678347, y: null}, {x: 0.320754717, y: null}, {x: 0.368608799, y: null}, {x: 0.057407407, y: null}, {x: 0.165480427, y: null}, {x: 0.233230134, y: null}, {x: 0.289017341, y: null}, {x: 0.292469352, y: null}, {x: 0.190821256, y: null}, {x: 0.345977012, y: null}, {x: 0.012320329, y: null}, {x: 0.155307263, y: null}, {x: 0.402645114, y: 12.033039}, {x: 0.35390625, y: null}, {x: 0.349194729, y: null}, {x: 0.354014599, y: null}, {x: 0.170068027, y: null}, {x: 0.153770813, y: null}, {x: 0.195081967, y: null}, {x: 0.228215768, y: null}, {x: 0.03030303, y: null}, {x: 0.496884735, y: null}, {x: 0.170334928, y: null}, {x: 0.258660508, y: null}, {x: 0.520408163, y: null}, {x: 0.198824682, y: null}, {x: 0.44518103, y: null}, {x: 0.285294118, y: null}, {x: 0.173435785, y: null}, {x: 0.336798337, y: null}, {x: 0.19822283, y: null}, {x: 0.215384615, y: null}, {x: 0.44743083, y: null}, {x: 0.173963134, y: null}, {x: 0.245762712, y: null}, {x: 0.398488121, y: null}, {x: 0.166437414, y: null}, {x: 0.225690276, y: null}, {x: 0.263605442, y: null}, {x: 0.188160677, y: null}, {x: 0.470787468, y: null}, {x: 0.27025393, y: null}, {x: 0.203605514, y: null}, {x: 0.315976331, y: null}, {x: 0.262450593, y: null}, {x: 0.208191126, y: null}, {x: 0.121158911, y: null}, {x: 0.165914221, y: null}, {x: 0.229357798, y: null}, {x: 0.347689076, y: null}, {x: 0.36382755, y: null}, {x: 0.350684932, y: null}, {x: 0.354658385, y: null}, {x: 0.558756634, y: null}, {x: 0.41745531, y: null}, {x: 0.411050649, y: null}, {x: 0.663316583, y: null}, {x: 0.648963731, y: null}, {x: 0.28664193, y: null}, {x: 0.158183242, y: null}, {x: 0.43501171, y: null}, {x: 0.456880734, y: null}, {x: 0.429235168, y: null}, {x: 0.381386861, y: null}, {x: 0.302726544, y: null}, {x: 0.190038314, y: null}, {x: 0.35959596, y: null}, {x: 0.428082192, y: null}, {x: 0.592857143, y: null}, {x: 0.287808642, y: null}, {x: 0.477477478, y: null}, {x: 0.502994012, y: null}, {x: 0.423740511, y: null}, {x: 0.292457949, y: null}, {x: 0.287833828, y: null}, {x: 0.276264591, y: null}, {x: 0.19135365, y: null}, {x: 0.434782609, y: null}, {x: 0.424533635, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.1272509, y: null}, {x: 0.27133758, y: null}, {x: 0.313188766, y: null}, {x: 0.204883227, y: null}, {x: 0.326253186, y: null}, {x: 0.666666667, y: null}, {x: 0.496977838, y: null}, {x: 0.638051044, y: null}, {x: 0.568939771, y: null}, {x: 0.276595745, y: null}, {x: 0.457496136, y: null}, {x: 0.318555008, y: null}, {x: 0.053973013, y: null}, {x: 0.166064982, y: null}, {x: 0.163043478, y: null}, {x: 0.498940678, y: null}, {x: 0.101214575, y: null}, {x: 0.030330882, y: null}, {x: 0.16509434, y: null}, {x: 0.103616813, y: null}, {x: 0.04805492, y: null}, {x: 0.176267848, y: null}, {x: 0.135287486, y: null}, {x: 0.687378641, y: null}, {x: 0.279783394, y: null}, {x: 0.394654088, y: null}, {x: 0.22440678, y: null}, {x: 0.018410853, y: null}, {x: 0.110447761, y: null}, {x: 0.1769437, y: null}, {x: 0.048816568, y: null}, {x: 0.241057543, y: null}, {x: 0.060537268, y: null}, {x: 0.307324079, y: null}, {x: 0.196296296, y: null}, {x: 0.284334313, y: null}, {x: 0.18614021, y: null}, {x: 0.403342618, y: 0.0117}, {x: 0.508752735, y: null}, {x: 0.4092827, y: null}, {x: 0.481180061, y: null}, {x: 0.68533171, y: null}, {x: 0.339680122, y: null}, {x: 0.157054126, y: null}, {x: 0.429906542, y: null}, {x: 0.212651413, y: null}, {x: 0.401856764, y: null}, {x: 0.359160613, y: null}, {x: 0.336751214, y: null}, {x: 0.212268314, y: null}, {x: 0.119665272, y: null}, {x: 0.147058824, y: null}, {x: 0.161369193, y: null}, {x: 0.181571816, y: null}, {x: 0.063391442, y: null}, {x: 0.186489058, y: null}, {x: 0.192680301, y: null}, {x: 0.14379085, y: null}, {x: 0.185079929, y: null}, {x: 0.281767956, y: null}, {x: 0.24963977, y: null}, {x: 0.147244095, y: null}, {x: 0.054298643, y: null}, {x: 0.16137806, y: null}, {x: 0.195821385, y: null}, {x: 0.075313808, y: null}, {x: 0.172024327, y: null}, {x: 0.301449275, y: null}, {x: 0.17764804, y: null}, {x: 0.094972067, y: null}, {x: 0.24010327, y: null}, {x: 0.164227642, y: null}, {x: 0.171111881, y: null}, {x: 0.255501223, y: null}, {x: 0.246316759, y: null}, {x: 0.317932296, y: null}, {x: 0.294478528, y: null}, {x: 0.167418264, y: null}, {x: 0.219114219, y: null}, {x: 0.363018355, y: null}, {x: 0.266115703, y: null}, {x: 0.370618941, y: null}, {x: 0.265232975, y: null}, {x: 0.354391371, y: null}, {x: 0.174757282, y: null}, {x: 0.330218069, y: null}, {x: 0.15993266, y: null}, {x: 0.058823529, y: null}, {x: 0.402554137, y: null}, {x: 0.258713137, y: null}, {x: 0.385956175, y: null}, {x: 0.433810048, y: null}, {x: 0.239772727, y: null}, {x: 0.203688853, y: null}, {x: 0.181273816, y: null}, {x: 0.176570458, y: null}, {x: 0.390854185, y: null}, {x: 0.526165557, y: null}, {x: 0.328767123, y: null}, {x: 0.509738079, y: null}, {x: 0.376847291, y: null}, {x: 0.441295547, y: null}, {x: 0.500341297, y: null}, {x: 0.043680839, y: null}, {x: 0.349788434, y: null}, {x: 0.35967801, y: null}, {x: 0.460141271, y: null}, {x: 0.672914714, y: null}, {x: 0.175465839, y: null}, {x: 0.481203008, y: null}, {x: 0.649269311, y: null}, {x: 0.364705882, y: null}, {x: 0.357692308, y: null}, {x: 0.181886793, y: null}, {x: 0.244627054, y: null}, {x: 0.70886076, y: null}, {x: 0.74380805, y: null}, {x: 0.440987125, y: null}, {x: 0.484683458, y: null}, {x: 0.220501475, y: null}, {x: 0.355712603, y: null}, {x: 0.447729673, y: null}, {x: 0.175059952, y: null}, {x: 0.068669528, y: null}, {x: 0.157848325, y: null}, {x: 0.124183007, y: null}, {x: 0.505770816, y: null}, {x: 0.308994709, y: null}, {x: 0.625924315, y: null}, {x: 0.429097606, y: null}, {x: 0.298921418, y: null}, {x: 0.368383405, y: null}, {x: 0.185582822, y: null}, {x: 0.212833258, y: null}, {x: 0.088582677, y: null}, {x: 0.220714286, y: null}, {x: 0.189666893, y: null}, {x: 0.156603774, y: null}, {x: 0.328396323, y: null}, {x: 0.059701493, y: null}, {x: 0.415878023, y: null}, {x: 0.455231388, y: null}, {x: 0.488, y: null}, {x: 0.132034632, y: null}, {x: 0.28785489, y: null}, {x: 0.241537579, y: null}, {x: 0.182328191, y: null}, {x: 0.111204013, y: null}, {x: 0.246540881, y: null}, {x: 0.103542234, y: null}, {x: 0.266040689, y: null}, {x: 0.062761506, y: null}, {x: 0.284039675, y: null}, {x: 0.437919463, y: null}, {x: 0.336483932, y: null}, {x: 0.125723739, y: null}, {x: 0.173109244, y: null}, {x: 0.261016949, y: null}, {x: 0.0, y: null}, {x: 0.483427142, y: null}, {x: 0.040922619, y: null}, {x: 0.321246819, y: null}, {x: 0.373563218, y: null}, {x: 0.435679612, y: null}, {x: 0.211428571, y: null}, {x: 0.398601399, y: null}, {x: 0.260465116, y: null}, {x: 0.207979627, y: null}, {x: 0.265402844, y: null}, {x: 0.369640788, y: null}, {x: 0.550929368, y: null}, {x: 0.285497342, y: null}, {x: 0.0974084, y: null}, {x: 0.272463768, y: null}, {x: 0.386812046, y: null}, {x: 0.139037433, y: null}, {x: 0.124192391, y: null}, {x: 0.497222222, y: null}, {x: 0.153305204, y: null}, {x: 0.272948822, y: null}, {x: 0.099647266, y: null}, {x: 0.223744292, y: null}, {x: 0.188248096, y: null}, {x: 0.343161343, y: null}, {x: 0.322883173, y: null}, {x: 0.123476418, y: null}, {x: 0.097308489, y: null}, {x: 0.278278278, y: null}, {x: 0.219834711, y: null}, {x: 0.360912982, y: null}, {x: 0.308182264, y: null}, {x: 0.435682327, y: null}, {x: 0.265086207, y: null}, {x: 0.254649499, y: null}, {x: 0.326553051, y: null}, {x: 0.105407883, y: null}, {x: 0.240506329, y: null}, {x: 0.21040724, y: null}, {x: 0.547151277, y: null}, {x: 0.351598174, y: null}, {x: 0.269668737, y: null}, {x: 0.285714286, y: null}, {x: 0.399716848, y: null}, {x: 0.530169492, y: null}, {x: 0.303955586, y: null}, {x: 0.119119879, y: null}, {x: 0.224776501, y: null}, {x: 0.23222061, y: null}, {x: 0.102230483, y: null}, {x: 0.171343284, y: null}, {x: 0.329479769, y: null}, {x: 0.452363091, y: null}, {x: 0.142679901, y: null}, {x: 0.209335219, y: null}, {x: 0.33433584, y: null}, {x: 0.455710956, y: null}, {x: 0.095744681, y: null}, {x: 0.253578732, y: null}, {x: 0.275033378, y: null}, {x: 0.498207885, y: null}, {x: 0.15015015, y: null}, {x: 0.393551446, y: null}, {x: 0.156346749, y: null}, {x: 0.307282416, y: null}, {x: 0.146107784, y: null}, {x: 0.363226453, y: null}, {x: 0.355444305, y: null}, {x: 0.301992846, y: null}, {x: 0.223898612, y: null}, {x: 0.279843444, y: null}, {x: 0.255772647, y: null}, {x: 0.149262537, y: null}, {x: 0.17305586, y: null}, {x: 0.184964201, y: null}, {x: 0.207594937, y: null}, {x: 0.289699571, y: null}, {x: 0.061064087, y: null}, {x: 0.098532495, y: null}, {x: 0.038422649, y: null}, {x: 0.13215859, y: null}, {x: 0.277185501, y: null}, {x: 0.290976821, y: null}, {x: 0.02425107, y: null}, {x: 0.096469418, y: null}, {x: 0.245923913, y: null}, {x: 0.055293324, y: null}, {x: 0.136594663, y: null}, {x: 0.049872123, y: null}, {x: 0.340761374, y: null}, {x: 0.298093588, y: null}, {x: 0.035862069, y: null}, {x: 0.419741697, y: null}, {x: 0.489655172, y: null}, {x: 0.418487395, y: null}, {x: 0.483902439, y: null}, {x: 0.657560356, y: null}, {x: 0.510857143, y: null}, {x: 0.150576806, y: null}, {x: 0.164612676, y: null}, {x: 0.367916303, y: null}, {x: 0.569039914, y: null}, {x: 0.575, y: null}, {x: 0.808520599, y: null}, {x: 0.858036273, y: null}, {x: 0.617763158, y: null}, {x: 0.518049398, y: null}, {x: 0.828442438, y: null}, {x: 0.410153641, y: null}, {x: 0.687372014, y: null}, {x: 0.240288568, y: null}, {x: 0.723423423, y: null}, {x: 0.053521127, y: null}, {x: 0.429067748, y: null}, {x: 0.633072407, y: null}, {x: 0.520833333, y: null}, {x: 0.5525, y: null}, {x: 0.213942308, y: null}, {x: 0.365323097, y: null}, {x: 0.569832402, y: null}, {x: 0.323170732, y: null}, {x: 0.346815435, y: null}, {x: 0.864583333, y: null}, {x: 0.336764706, y: null}, {x: 0.2864494, y: null}, {x: 0.110791367, y: null}, {x: 0.325129534, y: null}, {x: 0.291204986, y: null}, {x: 0.233656174, y: null}, {x: 0.239210285, y: null}, {x: 0.198501873, y: null}, {x: 0.101176471, y: null}, {x: 0.433772756, y: null}, {x: 0.16462841, y: null}, {x: 0.126669365, y: null}, {x: 0.269754768, y: null}, {x: 0.40672187, y: null}, {x: 0.328777525, y: null}, {x: 0.193958665, y: null}, {x: 0.092515593, y: null}, {x: 0.354469855, y: null}, {x: 0.019249278, y: null}, {x: 0.330551692, y: null}, {x: 0.0, y: null}, {x: 0.081285444, y: null}, {x: 0.545370655, y: null}, {x: 0.245692884, y: null}, {x: 0.402533427, y: null}, {x: 0.451854372, y: null}, {x: 0.008665511, y: null}, {x: 0.275546159, y: null}, {x: 0.155932203, y: null}, {x: 0.279180388, y: null}, {x: 0.189320388, y: null}, {x: 0.200105042, y: null}, {x: 0.318367347, y: null}, {x: 0.362576508, y: null}, {x: 0.106971154, y: null}, {x: 0.132747253, y: null}, {x: 0.200153965, y: null}, {x: 0.055757576, y: null}, {x: 0.09388412, y: null}, {x: 0.059440559, y: null}, {x: 0.263854425, y: null}, {x: 0.086638831, y: null}, {x: 0.065292096, y: null}, {x: 0.127046496, y: null}, {x: 0.115723923, y: null}, {x: 0.326947637, y: null}, {x: 0.157667387, y: null}, {x: 0.156472262, y: null}, {x: 0.094880847, y: null}, {x: 0.300946143, y: null}, {x: 0.247046187, y: null}, {x: 0.479674797, y: null}, {x: 0.230994152, y: null}, {x: 0.33545402, y: 0.0002}, {x: 0.052132701, y: null}, {x: 0.042813456, y: null}, {x: 0.802477184, y: null}, {x: 0.493624772, y: null}, {x: 0.435756385, y: null}, {x: 0.0, y: null}, {x: 0.125087352, y: null}, {x: 0.142585551, y: null}, {x: 0.33089701, y: null}, {x: 0.538396625, y: null}, {x: 0.265013055, y: null}, {x: 0.066505441, y: null}, {x: 0.0, y: null}, {x: 0.186875892, y: null}, {x: 0.152208202, y: null}, {x: 0.128019324, y: null}, {x: 0.323877069, y: null}, {x: 0.0, y: null}, {x: 0.324041812, y: null}, {x: 0.335646141, y: null}, {x: 0.592633929, y: null}, {x: 0.589965398, y: null}, {x: 0.339244851, y: null}, {x: 0.319901569, y: null}, {x: 0.609080842, y: null}, {x: 0.23853525, y: null}, {x: 0.2376, y: null}, {x: 0.378519974, y: null}, {x: 0.276356831, y: null}, {x: 0.252121817, y: null}, {x: 0.361656704, y: null}, {x: 0.215590743, y: null}, {x: 0.403463204, y: null}, {x: 0.048368298, y: null}, {x: 0.43122102, y: null}, {x: 0.134644478, y: null}, {x: 0.31283628, y: null}, {x: 0.182389937, y: null}, {x: 0.400589102, y: null}, {x: 0.393464942, y: null}, {x: 0.434758772, y: null}, {x: 0.278431373, y: null}, {x: 0.229303548, y: null}, {x: 0.074561404, y: null}, {x: 0.333865815, y: null}, {x: 0.273105745, y: null}, {x: 0.374668786, y: null}, {x: 0.240279163, y: null}, {x: 0.387490465, y: null}, {x: 0.236363636, y: null}, {x: 0.358986175, y: null}, {x: 0.372798434, y: null}, {x: 0.183767228, y: null}, {x: 0.469234885, y: null}, {x: 0.343615052, y: null}, {x: 0.229545455, y: null}, {x: 0.297575758, y: null}, {x: 0.355607477, y: null}, {x: 0.592121982, y: null}, {x: 0.382690302, y: null}, {x: 0.242718447, y: null}, {x: 0.353798127, y: null}, {x: 0.287280702, y: null}, {x: 0.124495289, y: null}, {x: 0.162212554, y: null}, {x: 0.138909091, y: null}, {x: 0.408499566, y: null}, {x: 0.312469675, y: null}, {x: 0.144219309, y: null}, {x: 0.238197425, y: null}, {x: 0.151552795, y: null}, {x: 0.123413258, y: null}, {x: 0.155276992, y: null}, {x: 0.242813456, y: null}, {x: 0.190909091, y: null}, {x: 0.0, y: null}, {x: 0.241575161, y: null}, {x: 0.075421473, y: null}, {x: 0.262490679, y: null}, {x: 0.223963134, y: null}, {x: 0.198603569, y: null}, {x: 0.178683386, y: null}, {x: 0.111854685, y: null}, {x: 0.132231405, y: null}, {x: 0.118500605, y: null}, {x: 0.053787879, y: null}, {x: 0.028061224, y: null}, {x: 0.143234323, y: null}, {x: 0.0, y: null}, {x: 0.083930399, y: null}, {x: 0.140676841, y: null}, {x: 0.181724316, y: null}, {x: 0.126268657, y: null}, {x: 0.003679853, y: null}, {x: 0.24940048, y: null}, {x: 0.297577855, y: null}, {x: 0.063529412, y: null}, {x: 0.17574021, y: null}, {x: 0.146396396, y: null}, {x: 0.341113106, y: null}, {x: 0.297681376, y: null}, {x: 0.376661743, y: null}, {x: 0.589836661, y: null}, {x: 0.103918228, y: null}, {x: 0.173866091, y: null}, {x: 0.0, y: null}, {x: 0.052516411, y: null}, {x: 0.14171123, y: null}, {x: 0.201823708, y: null}, {x: 0.085377821, y: null}, {x: 0.417061611, y: null}, {x: 0.202511774, y: null}, {x: 0.105524079, y: null}, {x: 0.079522863, y: null}, {x: 0.126707132, y: null}, {x: 0.29499561, y: null}, {x: 0.383693046, y: null}, {x: 0.276165803, y: null}, {x: 0.268060837, y: null}, {x: 0.339449541, y: null}, {x: 0.154738878, y: null}, {x: 0.136468774, y: null}, {x: 0.196555218, y: null}, {x: 0.554667788, y: null}, {x: 0.15597148, y: null}, {x: 0.23524343, y: null}, {x: 0.322191272, y: null}, {x: 0.28372591, y: null}, {x: 0.123559539, y: null}, {x: 0.112867809, y: null}, {x: 0.022659256, y: null}, {x: 0.092447917, y: null}, {x: 0.063852243, y: null}, {x: 0.0, y: null}, {x: 0.133391456, y: null}, {x: 0.090115125, y: null}, {x: 0.172472873, y: null}, {x: 0.037712895, y: null}, {x: 0.146007605, y: null}, {x: 0.15511222, y: null}, {x: 0.0198188, y: null}, {x: 0.050741608, y: null}, {x: 0.169124877, y: null}, {x: 0.151589242, y: null}, {x: 0.179171333, y: null}, {x: 0.069127124, y: null}, {x: 0.116481392, y: null}, {x: 0.129323308, y: null}, {x: 0.04685836, y: null}, {x: 0.016800584, y: null}, {x: 0.048023642, y: null}, {x: 0.100680272, y: null}, {x: 0.58206278, y: null}, {x: 0.0, y: null}, {x: 0.085852479, y: null}, {x: 0.15303526, y: null}, {x: 0.524165708, y: null}, {x: 0.325624422, y: null}, {x: 0.123513871, y: null}, {x: 0.0, y: null}, {x: 0.127576602, y: null}, {x: 0.183862434, y: null}, {x: 0.111435726, y: null}, {x: 0.252941177, y: null}, {x: 0.07177814, y: null}, {x: 0.143512451, y: null}, {x: 0.03902439, y: null}, {x: 0.372747253, y: null}, {x: 0.095264938, y: null}, {x: 0.434782609, y: null}, {x: 0.117625093, y: null}, {x: 0.111768185, y: null}, {x: 0.062271062, y: null}, {x: 0.038184438, y: null}, {x: 0.037009063, y: null}, {x: 0.164162178, y: null}, {x: 0.315154994, y: null}, {x: 0.114213198, y: null}, {x: 0.112081514, y: null}, {x: 0.0, y: null}, {x: 0.126518219, y: null}, {x: 0.589641434, y: null}, {x: 0.202255109, y: null}, {x: 0.163157895, y: null}, {x: 0.06900801, y: null}, {x: 0.495283019, y: null}, {x: 0.11902615, y: null}, {x: 0.08789315, y: null}, {x: 0.213245033, y: null}, {x: 0.160091481, y: null}, {x: 0.107175713, y: null}, {x: 0.325405405, y: null}, {x: 0.127067015, y: null}, {x: 0.293577982, y: null}, {x: 0.288843607, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075313808, y: null}, {x: 0.550359712, y: null}, {x: 0.0, y: null}, {x: 0.118030413, y: null}, {x: 0.179292929, y: null}, {x: 0.079299691, y: null}, {x: 0.239059968, y: null}, {x: 0.114947197, y: null}, {x: 0.102760736, y: null}, {x: 0.153924222, y: null}, {x: 0.017120623, y: null}, {x: 0.116334661, y: null}, {x: 0.365664404, y: null}, {x: 0.156437126, y: null}, {x: 0.025022341, y: null}, {x: 0.269158879, y: null}, {x: 0.622871046, y: null}, {x: 0.217356042, y: null}, {x: 0.289119804, y: null}, {x: 0.437041972, y: null}, {x: 0.625321337, y: null}, {x: 0.210368893, y: null}, {x: 0.367272727, y: null}, {x: 0.289623717, y: null}, {x: 0.403438395, y: null}, {x: 0.094339623, y: null}, {x: 0.176, y: null}, {x: 0.353255426, y: null}, {x: 0.476152623, y: null}, {x: 0.268591772, y: null}, {x: 0.247044917, y: null}, {x: 0.194107452, y: null}, {x: 0.207771182, y: null}, {x: 0.24205379, y: null}, {x: 0.288085359, y: null}, {x: 0.192329708, y: null}, {x: 0.177777778, y: null}, {x: 0.444206009, y: null}, {x: 0.193922431, y: null}, {x: 0.236474695, y: null}, {x: 0.152218996, y: null}, {x: 0.067391304, y: null}, {x: 0.633761106, y: null}, {x: 0.378848728, y: null}, {x: 0.155805978, y: null}, {x: 0.223214286, y: null}, {x: 0.141225733, y: null}, {x: 0.238128987, y: null}, {x: 0.105389222, y: null}, {x: 0.226868793, y: null}, {x: 0.179365079, y: null}, {x: 0.139650873, y: null}, {x: 0.289487312, y: null}, {x: 0.265251989, y: null}, {x: 0.776556777, y: null}, {x: 0.336858006, y: null}, {x: 0.093155894, y: null}, {x: 0.061428571, y: null}, {x: 0.578643579, y: null}, {x: 0.676948052, y: null}, {x: 0.800447177, y: null}, {x: 0.098207327, y: null}, {x: 0.541666667, y: null}, {x: 0.142259414, y: null}, {x: 0.031313131, y: null}, {x: 0.554314721, y: null}, {x: 0.050111359, y: null}, {x: 0.025575448, y: null}, {x: 0.060606061, y: null}, {x: 0.0, y: null}, {x: 0.272820513, y: null}, {x: 0.184559711, y: null}, {x: 0.097065463, y: null}, {x: 0.438481675, y: null}, {x: 0.523618091, y: null}, {x: 0.425742574, y: null}, {x: 0.255975328, y: null}, {x: 0.331612903, y: null}, {x: 0.30228667, y: null}, {x: 0.468108108, y: null}, {x: 0.808575804, y: null}, {x: 0.650214592, y: null}, {x: 0.731553057, y: null}, {x: 0.623893805, y: null}, {x: 0.583061889, y: null}, {x: 0.477015825, y: null}, {x: 0.241610738, y: null}, {x: 0.246464039, y: null}, {x: 0.020792079, y: null}, {x: 0.329139073, y: null}, {x: 0.296934866, y: null}, {x: 0.536317568, y: null}, {x: 0.419132829, y: null}, {x: 0.332554062, y: null}, {x: 0.655139289, y: null}, {x: 0.510978044, y: null}, {x: 0.705842848, y: null}, {x: 0.720833333, y: null}, {x: 0.458333333, y: null}, {x: 0.27124183, y: null}, {x: 0.452717391, y: null}, {x: 0.457732949, y: null}, {x: 0.644927536, y: null}, {x: 0.178466077, y: null}, {x: 0.64235166, y: null}, {x: 0.511641444, y: null}, {x: 0.142367067, y: null}, {x: 0.303030303, y: null}, {x: 0.047302905, y: null}, {x: 0.407783418, y: null}, {x: 0.363344051, y: null}, {x: 0.301818182, y: null}, {x: 0.257738095, y: null}, {x: 0.455690508, y: null}, {x: 0.047013977, y: null}, {x: 0.480806142, y: null}, {x: 0.148148148, y: null}, {x: 0.083032491, y: null}, {x: 0.256652868, y: null}, {x: 0.449941793, y: null}, {x: 0.502857143, y: null}, {x: 0.394893617, y: null}, {x: 0.455964326, y: null}, {x: 0.358895706, y: null}, {x: 0.487179487, y: null}, {x: 0.428381079, y: null}, {x: 0.722955145, y: null}, {x: 0.466138329, y: null}, {x: 0.484363636, y: null}, {x: 0.234217749, y: null}, {x: 0.440431267, y: null}, {x: 0.278461539, y: null}, {x: 0.285258964, y: null}, {x: 0.639753376, y: null}, {x: 0.459951456, y: null}, {x: 0.467357513, y: null}, {x: 0.626714801, y: null}, {x: 0.298892989, y: null}, {x: 0.539954853, y: null}, {x: 0.243928194, y: null}, {x: 0.301120448, y: null}, {x: 0.236024845, y: null}, {x: 0.536796537, y: null}, {x: 0.21187801, y: null}, {x: 0.599023332, y: null}, {x: 0.560414269, y: null}, {x: 0.658061374, y: null}, {x: 0.419966302, y: null}, {x: 0.506322445, y: null}, {x: 0.27308603, y: null}, {x: 0.0, y: null}, {x: 0.211217184, y: null}, {x: 0.088700565, y: null}, {x: 0.434358224, y: null}, {x: 0.246028143, y: null}, {x: 0.213157895, y: null}, {x: 0.235191638, y: null}, {x: 0.432766615, y: null}, {x: 0.432024169, y: null}, {x: 0.174089069, y: null}, {x: 0.43256579, y: null}, {x: 0.267912773, y: null}, {x: 0.638860631, y: null}, {x: 0.125090383, y: null}, {x: 0.328007519, y: null}, {x: 0.268500949, y: null}, {x: 0.451703407, y: null}, {x: 0.228358209, y: null}, {x: 0.272848566, y: null}, {x: 0.163146067, y: null}, {x: 0.196129032, y: null}, {x: 0.350411132, y: null}, {x: 0.321415803, y: null}, {x: 0.194068343, y: null}, {x: 0.404568902, y: null}, {x: 0.170212766, y: null}, {x: 0.346330275, y: null}, {x: 0.706701031, y: null}, {x: 0.534646739, y: null}, {x: 0.744510978, y: null}, {x: 0.745925616, y: null}, {x: 0.715239155, y: null}, {x: 0.638457687, y: null}, {x: 0.605493134, y: null}, {x: 0.762241292, y: null}, {x: 0.731707317, y: null}, {x: 0.0, y: null}, {x: 0.735701906, y: null}, {x: 0.842105263, y: null}, {x: 0.851461428, y: null}, {x: 0.854760461, y: null}, {x: 0.700987306, y: null}, {x: 0.809554551, y: null}, {x: 0.542168675, y: null}, {x: 0.70011534, y: null}, {x: 0.630434783, y: null}, {x: 0.703597122, y: null}, {x: 0.477761119, y: null}, {x: 0.084656085, y: null}, {x: 0.218037661, y: null}, {x: 0.31827957, y: null}, {x: 0.200140449, y: null}, {x: 0.089765101, y: null}, {x: 0.321628093, y: null}, {x: 0.327291037, y: null}, {x: 0.152145644, y: null}, {x: 0.036794767, y: null}, {x: 0.13676976, y: null}, {x: 0.151361329, y: null}, {x: 0.100806452, y: null}, {x: 0.405745063, y: null}, {x: 0.107708553, y: null}, {x: 0.070974576, y: null}, {x: 0.038854806, y: null}, {x: 0.408336277, y: null}, {x: 0.201072386, y: null}, {x: 0.175342466, y: null}, {x: 0.263991552, y: null}, {x: 0.134215501, y: null}, {x: 0.141125541, y: null}, {x: 0.493091949, y: null}, {x: 0.169693175, y: null}, {x: 0.151515152, y: null}, {x: 0.12715713, y: null}, {x: 0.238372093, y: null}, {x: 0.211703959, y: null}, {x: 0.182995496, y: null}, {x: 0.090909091, y: null}, {x: 0.232673267, y: null}, {x: 0.106060606, y: null}, {x: 0.208279431, y: null}, {x: 0.343478261, y: null}, {x: 0.258687259, y: null}, {x: 0.065675341, y: null}, {x: 0.322373697, y: null}, {x: 0.123758594, y: null}, {x: 0.288623285, y: null}, {x: 0.073569482, y: null}, {x: 0.118829982, y: null}, {x: 0.149234694, y: null}, {x: 0.15250291, y: null}, {x: 0.060626703, y: null}, {x: 0.092255125, y: null}, {x: 0.448385389, y: null}, {x: 0.196416722, y: null}, {x: 0.132716049, y: null}, {x: 0.227699531, y: null}, {x: 0.069767442, y: null}, {x: 0.094230769, y: null}, {x: 0.017931034, y: null}, {x: 0.075027996, y: null}, {x: 0.136291601, y: null}, {x: 0.089648799, y: null}, {x: 0.069212411, y: null}, {x: 0.094409938, y: null}, {x: 0.025657071, y: null}, {x: 0.060321716, y: null}, {x: 0.0590743, y: null}, {x: 0.267729084, y: null}, {x: 0.083010904, y: null}, {x: 0.075286416, y: null}, {x: 0.085882984, y: null}, {x: 0.208118081, y: null}, {x: 0.085723816, y: null}, {x: 0.064118896, y: null}, {x: 0.109077599, y: null}, {x: 0.091924399, y: null}, {x: 0.043564356, y: null}, {x: 0.087671233, y: null}, {x: 0.164005806, y: null}, {x: 0.173177843, y: null}, {x: 0.053217822, y: null}, {x: 0.088706366, y: null}, {x: 0.137301587, y: null}, {x: 0.069672131, y: null}, {x: 0.206932052, y: null}, {x: 0.310514541, y: null}, {x: 0.08650519, y: null}, {x: 0.110561056, y: null}, {x: 0.22125182, y: null}, {x: 0.132335329, y: null}, {x: 0.057953144, y: null}, {x: 0.043621943, y: null}, {x: 0.076346604, y: null}, {x: 0.138438881, y: null}, {x: 0.419213974, y: null}, {x: 0.046464646, y: null}, {x: 0.0, y: null}, {x: 0.079030558, y: null}, {x: 0.263785395, y: null}, {x: 0.061058924, y: null}, {x: 0.207207207, y: null}, {x: 0.0, y: null}, {x: 0.241537054, y: null}, {x: 0.160781367, y: null}, {x: 0.053030303, y: null}, {x: 0.364100926, y: null}, {x: 0.380126183, y: null}, {x: 0.239409805, y: null}, {x: 0.319026549, y: null}, {x: 0.350312779, y: null}, {x: 0.225237449, y: null}, {x: 0.448918269, y: null}, {x: 0.508521601, y: null}, {x: 0.479357798, y: null}, {x: 0.3224149, y: null}, {x: 0.24432105, y: null}, {x: 0.533035714, y: null}, {x: 0.0, y: null}, {x: 0.637288136, y: null}, {x: 0.26092233, y: null}, {x: 0.306257521, y: null}, {x: 0.319186561, y: null}, {x: 0.195939982, y: null}, {x: 0.299299668, y: null}, {x: 0.262352941, y: null}, {x: 0.25443787, y: null}, {x: 0.328278999, y: null}, {x: 0.205414013, y: null}, {x: 0.288444831, y: null}, {x: 0.286445013, y: null}, {x: 0.070126227, y: null}, {x: 0.216596343, y: null}, {x: 0.382257012, y: null}, {x: 0.26707132, y: null}, {x: 0.0, y: null}, {x: 0.066487576, y: 3617.0713}, {x: 0.115537849, y: null}, {x: 0.041635688, y: null}, {x: 0.080174927, y: null}, {x: 0.01407212, y: null}, {x: 0.011082694, y: null}, {x: 0.014285714, y: null}, {x: 0.067328918, y: null}, {x: 0.01787234, y: null}, {x: 0.122308355, y: null}, {x: 0.043723554, y: null}, {x: 0.016129032, y: null}, {x: 0.0, y: null}, {x: 0.115507049, y: null}, {x: 0.04434907, y: null}, {x: 0.095505618, y: null}, {x: 0.0, y: null}, {x: 0.026545808, y: null}, {x: 0.0, y: null}, {x: 0.114595211, y: null}, {x: 0.106827025, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.168466523, y: null}, {x: 0.224159402, y: null}, {x: 0.010598504, y: null}, {x: 0.188047809, y: null}, {x: 0.027922385, y: null}, {x: 0.171848502, y: 21.541675}, {x: 0.193248945, y: null}, {x: 0.0, y: null}, {x: 0.116096866, y: null}, {x: 0.205895901, y: null}, {x: 0.0, y: null}, {x: 0.039182993, y: null}, {x: 0.011422045, y: null}, {x: 0.015063731, y: null}, {x: 0.0, y: null}, {x: 0.031298905, y: null}, {x: 0.067066521, y: null}, {x: 0.0, y: null}, {x: 0.136803874, y: null}, {x: 0.090263268, y: null}, {x: 0.090269151, y: null}, {x: 0.071390231, y: null}, {x: 0.075892857, y: null}, {x: 0.061668682, y: null}, {x: 0.025142857, y: null}, {x: 0.147532729, y: null}, {x: 0.058736059, y: null}, {x: 0.234347048, y: null}, {x: 0.019691325, y: null}, {x: 0.042836041, y: null}, {x: 0.054054054, y: null}, {x: 0.128456221, y: null}, {x: 0.04283054, y: null}, {x: 0.0, y: null}, {x: 0.011235955, y: null}, {x: 0.076626506, y: null}, {x: 0.0, y: null}, {x: 0.154471545, y: null}, {x: 0.04835924, y: null}, {x: 0.211058665, y: null}, {x: 0.000751315, y: null}, {x: 0.0, y: 0.021042}, {x: 0.01244168, y: null}, {x: 0.015780731, y: null}, {x: 0.003205128, y: null}, {x: 0.041433371, y: null}, {x: 0.136166522, y: null}, {x: 0.060869565, y: null}, {x: 0.122555411, y: null}, {x: 0.031631919, y: null}, {x: 0.13753988, y: null}, {x: 0.020641356, y: null}, {x: 0.030268418, y: null}, {x: 0.028318584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055288462, y: null}, {x: 0.0, y: null}, {x: 0.023419204, y: null}, {x: 0.061333333, y: null}, {x: 0.056431535, y: null}, {x: 0.012683578, y: null}, {x: 0.100056211, y: null}, {x: 0.041463415, y: null}, {x: 0.067366579, y: null}, {x: 0.004819277, y: null}, {x: 0.020833333, y: null}, {x: 0.024445708, y: null}, {x: 0.014472777, y: null}, {x: 0.046162403, y: null}, {x: 0.00273224, y: null}, {x: 0.029723992, y: null}, {x: 0.099346405, y: null}, {x: 0.112621359, y: null}, {x: 0.090563429, y: null}, {x: 0.0, y: null}, {x: 0.089023773, y: null}, {x: 0.004582485, y: null}, {x: 0.035049288, y: null}, {x: 0.058823529, y: null}, {x: 0.003511236, y: null}, {x: 0.057321773, y: null}, {x: 0.080176211, y: null}, {x: 0.033033033, y: null}, {x: 0.098484848, y: null}, {x: 0.10243701, y: null}, {x: 0.00933553, y: null}, {x: 0.0, y: null}, {x: 0.096503497, y: null}, {x: 0.079427726, y: null}, {x: 0.076479076, y: null}, {x: 0.491942324, y: null}, {x: 0.398843931, y: null}, {x: 0.319482918, y: null}, {x: 0.776713338, y: null}, {x: 0.502976191, y: null}, {x: 0.549869905, y: null}, {x: 0.84375, y: null}, {x: 0.741132076, y: null}, {x: 0.851528384, y: null}, {x: 0.848380427, y: null}, {x: 0.901129944, y: null}, {x: 0.797481637, y: null}, {x: 0.910585817, y: null}, {x: 0.904982619, y: null}, {x: 0.668621701, y: null}, {x: 0.795454546, y: null}, {x: 0.624051372, y: null}, {x: 0.853749418, y: null}, {x: 0.783849918, y: null}, {x: 0.484526967, y: null}, {x: 0.789579158, y: null}, {x: 0.809848485, y: null}, {x: 0.761339551, y: null}, {x: 0.731147541, y: null}, {x: 0.478682171, y: null}, {x: 0.19012605, y: null}, {x: 0.552168022, y: null}, {x: 0.657407407, y: null}, {x: 0.464079273, y: null}, {x: 0.331395349, y: null}, {x: 0.721046077, y: null}, {x: 0.621012101, y: null}, {x: 0.978417266, y: null}, {x: 0.851948052, y: null}, {x: 0.786802031, y: null}, {x: 0.976299376, y: null}, {x: 0.993265993, y: null}, {x: 0.879605827, y: null}, {x: 0.867587327, y: null}, {x: 0.611304348, y: null}, {x: 0.784980745, y: null}, {x: 0.832241153, y: null}, {x: 0.605659026, y: null}, {x: 0.391104295, y: null}, {x: 0.544887781, y: null}, {x: 0.579019541, y: null}, {x: 0.6493756, y: null}, {x: 0.854868341, y: null}, {x: 0.792165749, y: null}, {x: 0.619640387, y: null}, {x: 0.848758465, y: null}, {x: 0.482758621, y: null}, {x: 0.844183565, y: null}, {x: 0.652783867, y: null}, {x: 0.805350554, y: null}, {x: 0.858851675, y: null}, {x: 0.924479167, y: null}, {x: 0.961275626, y: null}, {x: 0.985457656, y: null}, {x: 0.949265688, y: null}, {x: 0.922929936, y: null}, {x: 0.871024735, y: null}, {x: 0.871236684, y: null}, {x: 1.0, y: null}, {x: 0.561518325, y: null}, {x: 0.309341501, y: null}, {x: 0.708148148, y: null}, {x: 0.692118227, y: null}, {x: 0.671621622, y: null}, {x: 0.328690808, y: null}, {x: 0.669160432, y: null}, {x: 0.618478944, y: null}, {x: 0.464380826, y: null}, {x: 0.142857143, y: null}, {x: 0.25798212, y: null}, {x: 0.182625483, y: null}, {x: 0.070806732, y: null}, {x: 0.299707602, y: null}, {x: 0.285714286, y: null}, {x: 0.105164904, y: null}, {x: 0.255273121, y: null}, {x: 0.111969112, y: null}, {x: 0.033960293, y: null}, {x: 0.071979434, y: null}, {x: 0.10403397, y: null}, {x: 0.119521912, y: null}, {x: 0.131091284, y: null}, {x: 0.070151921, y: null}, {x: 0.07823741, y: null}, {x: 0.061776062, y: null}, {x: 0.072761194, y: null}, {x: 0.032214765, y: null}, {x: 0.107628004, y: null}, {x: 0.099062134, y: null}, {x: 0.039408867, y: null}, {x: 0.084408602, y: null}, {x: 0.208797032, y: null}, {x: 0.0, y: null}, {x: 0.114045159, y: null}, {x: 0.231069477, y: null}, {x: 0.028325123, y: null}, {x: 0.110132159, y: null}, {x: 0.060983199, y: null}, {x: 0.090592334, y: null}, {x: 0.020075758, y: null}, {x: 0.197417967, y: null}, {x: 0.218104817, y: null}, {x: 0.11627907, y: null}, {x: 0.034393809, y: null}, {x: 0.044551062, y: null}, {x: 0.247531271, y: null}, {x: 0.041696113, y: null}, {x: 0.03030303, y: null}, {x: 0.126549964, y: null}, {x: 0.094280608, y: null}, {x: 0.04178273, y: null}, {x: 0.06168446, y: null}, {x: 0.082235785, y: null}, {x: 0.062121212, y: null}, {x: 0.164795689, y: null}, {x: 0.194368132, y: null}, {x: 0.052581715, y: null}, {x: 0.461538462, y: null}, {x: 0.02002584, y: null}, {x: 0.0, y: null}, {x: 0.018734388, y: null}, {x: 0.098822325, y: null}, {x: 0.107617896, y: null}, {x: 0.160372732, y: null}, {x: 0.114635252, y: null}, {x: 0.152927121, y: null}, {x: 0.109589041, y: null}, {x: 0.232016211, y: null}, {x: 0.058823529, y: null}, {x: 0.0, y: null}, {x: 0.091782284, y: null}, {x: 0.146581197, y: null}, {x: 0.020706456, y: null}, {x: 0.000971817, y: null}, {x: 0.027093596, y: null}, {x: 0.129917658, y: null}, {x: 0.131410256, y: null}, {x: 0.104056437, y: null}, {x: 0.031123139, y: null}, {x: 0.039660057, y: null}, {x: 0.076732673, y: null}, {x: 0.031585597, y: null}, {x: 0.291970803, y: null}, {x: 0.000660502, y: null}, {x: 0.011011011, y: null}, {x: 0.012298558, y: null}, {x: 0.062390543, y: null}, {x: 0.001129944, y: null}, {x: 0.428134557, y: null}, {x: 0.157817109, y: null}, {x: 0.025700935, y: null}, {x: 0.088181818, y: null}, {x: 0.07860262, y: null}, {x: 0.024965956, y: null}, {x: 0.076994867, y: null}, {x: 0.060514372, y: null}, {x: 0.190140845, y: null}, {x: 0.006815366, y: null}, {x: 0.049686848, y: null}, {x: 0.340220386, y: null}, {x: 0.0, y: null}, {x: 0.157366771, y: null}, {x: 0.093249428, y: null}, {x: 0.062756817, y: null}, {x: 0.08699187, y: null}, {x: 0.017415215, y: null}, {x: 0.012691466, y: null}, {x: 0.02600104, y: null}, {x: 0.021117166, y: null}, {x: 0.100055586, y: null}, {x: 0.094315656, y: null}, {x: 0.066437008, y: null}, {x: 0.083569405, y: null}, {x: 0.100716561, y: null}, {x: 0.202319072, y: null}, {x: 0.153669725, y: null}, {x: 0.038064516, y: null}, {x: 0.095583787, y: null}, {x: 0.016042781, y: null}, {x: 0.018318966, y: null}, {x: 0.259567388, y: null}, {x: 0.070686071, y: null}, {x: 0.053818182, y: null}, {x: 0.039195637, y: null}, {x: 0.152311877, y: null}, {x: 0.061298077, y: null}, {x: 0.065064478, y: null}, {x: 0.059433962, y: null}, {x: 0.069084629, y: null}, {x: 0.02417962, y: null}, {x: 0.127639156, y: null}, {x: 0.130653266, y: null}, {x: 0.252906977, y: null}, {x: 0.037284895, y: null}, {x: 0.271126761, y: null}, {x: 0.04446461, y: null}, {x: 0.438220758, y: null}, {x: 0.224897541, y: null}, {x: 0.074432093, y: null}, {x: 0.236148956, y: null}, {x: 0.398945519, y: null}, {x: 0.211764706, y: null}, {x: 0.015025042, y: null}, {x: 0.076526225, y: null}, {x: 0.104130809, y: null}, {x: 0.087035358, y: null}, {x: 0.039270687, y: null}, {x: 0.026011561, y: null}, {x: 0.049031477, y: null}, {x: 0.024727992, y: null}, {x: 0.530139104, y: null}, {x: 0.04389313, y: null}, {x: 0.010638298, y: null}, {x: 0.032840723, y: null}, {x: 0.031652989, y: null}, {x: 0.09512761, y: null}, {x: 0.142121524, y: null}, {x: 0.0, y: null}, {x: 0.241830065, y: null}, {x: 0.451451452, y: null}, {x: 0.054270882, y: null}, {x: 0.148351648, y: null}, {x: 0.180206795, y: null}, {x: 0.428433735, y: null}, {x: 0.254112706, y: null}, {x: 0.0, y: null}, {x: 0.436298077, y: null}, {x: 0.147177419, y: null}, {x: 0.556331878, y: null}, {x: 0.434986334, y: null}, {x: 0.62111293, y: null}, {x: 0.233716475, y: null}, {x: 0.292682927, y: null}, {x: 0.327024185, y: null}, {x: 0.431118314, y: null}, {x: 0.302603037, y: null}, {x: 0.497847358, y: null}, {x: 0.317375887, y: null}, {x: 0.230225989, y: null}, {x: 0.254545455, y: null}, {x: 0.576712329, y: null}, {x: 0.271746945, y: null}, {x: 0.45505618, y: null}, {x: 0.319502075, y: null}, {x: 0.296660118, y: null}, {x: 0.430868167, y: null}, {x: 0.389933628, y: null}, {x: 0.332575758, y: null}, {x: 0.247718383, y: null}, {x: 0.37260592, y: null}, {x: 0.337327189, y: null}, {x: 0.28358209, y: null}, {x: 0.374579125, y: null}, {x: 0.206666667, y: null}, {x: 0.182298547, y: null}, {x: 0.238975818, y: null}, {x: 0.484057971, y: null}, {x: 0.516728625, y: null}, {x: 0.291262136, y: null}, {x: 0.317335945, y: null}, {x: 0.322939866, y: null}, {x: 0.327349525, y: null}, {x: 0.406193078, y: null}, {x: 0.378563284, y: null}, {x: 0.183486239, y: null}, {x: 0.824340528, y: null}, {x: 0.453324379, y: null}, {x: 0.362804878, y: null}, {x: 0.425986842, y: null}, {x: 0.425774878, y: null}, {x: 0.354102406, y: null}, {x: 0.288625904, y: null}, {x: 0.576019778, y: null}, {x: 0.331848552, y: null}, {x: 0.576506955, y: null}, {x: 0.394610202, y: null}, {x: 0.306148055, y: null}, {x: 0.795580111, y: null}, {x: 0.537383178, y: null}, {x: 0.371278459, y: null}, {x: 0.440585009, y: null}, {x: 0.647199047, y: null}, {x: 0.536860364, y: null}, {x: 0.551282051, y: null}, {x: 0.468823994, y: null}, {x: 0.0, y: null}, {x: 0.425758819, y: null}, {x: 0.61423651, y: null}, {x: 0.47319933, y: null}, {x: 0.360818351, y: null}, {x: 0.31202046, y: null}, {x: 0.40386016, y: null}, {x: 0.332650972, y: null}, {x: 0.344453711, y: null}, {x: 0.335353535, y: null}, {x: 0.40886076, y: null}, {x: 0.625598086, y: null}, {x: 0.323529412, y: null}, {x: 0.429442509, y: null}, {x: 0.764770241, y: null}, {x: 0.481530343, y: null}, {x: 0.342256214, y: null}, {x: 0.304247104, y: null}, {x: 0.317724933, y: null}, {x: 0.621507197, y: null}, {x: 0.432989691, y: null}, {x: 0.282258065, y: null}, {x: 0.489719626, y: null}, {x: 0.410749834, y: null}, {x: 0.577118644, y: null}, {x: 0.278816199, y: null}, {x: 0.408577878, y: null}, {x: 0.529881995, y: null}, {x: 0.630111524, y: null}, {x: 0.388148148, y: null}, {x: 0.373713381, y: null}, {x: 0.660633484, y: null}, {x: 0.609332113, y: null}, {x: 0.188295165, y: null}, {x: 0.418831169, y: null}, {x: 0.444444444, y: null}, {x: 0.335466179, y: null}, {x: 0.175656985, y: null}, {x: 0.110909091, y: null}, {x: 0.311409396, y: null}, {x: 0.141258741, y: null}, {x: 0.120588235, y: null}, {x: 0.339648173, y: null}, {x: 0.167492567, y: null}, {x: 0.17802645, y: null}, {x: 0.161595673, y: null}, {x: 0.167664671, y: null}, {x: 0.227202473, y: null}, {x: 0.081447964, y: null}, {x: 0.145405888, y: null}, {x: 0.151515152, y: null}, {x: 0.091139241, y: null}, {x: 0.24270073, y: null}, {x: 0.144736842, y: null}, {x: 0.052714398, y: null}, {x: 0.363675958, y: null}, {x: 0.21564482, y: null}, {x: 0.290950745, y: null}, {x: 0.341207349, y: null}, {x: 0.566775244, y: null}, {x: 0.2477842, y: null}, {x: 0.25111309, y: null}, {x: 0.126646403, y: null}, {x: 0.213203463, y: null}, {x: 0.124174373, y: null}, {x: 0.121562952, y: null}, {x: 0.06097561, y: null}, {x: 0.326802835, y: null}, {x: 0.131782946, y: null}, {x: 0.109284333, y: null}, {x: 0.248421053, y: null}, {x: 0.052206339, y: null}, {x: 0.098901099, y: 7.2}, {x: 0.119533528, y: null}, {x: 0.170608108, y: null}, {x: 0.1875, y: null}, {x: 0.193760263, y: null}, {x: 0.832089552, y: null}, {x: 0.192271442, y: null}, {x: 0.881118881, y: null}, {x: 0.129524887, y: null}, {x: 0.022099448, y: null}, {x: 0.159090909, y: null}, {x: 0.0, y: null}, {x: 0.295384615, y: null}, {x: 0.105643994, y: 766.04}, {x: 0.294324166, y: 273.784}, {x: 0.099509804, y: null}, {x: 0.974358974, y: null}, {x: 0.920913884, y: null}, {x: 0.089480048, y: 2.5375}, {x: 0.804804805, y: null}, {x: 0.770975057, y: 0.473}, {x: 0.524307692, y: null}, {x: 0.817708333, y: null}, {x: 0.662735849, y: null}, {x: 0.534988713, y: null}, {x: 0.737089202, y: null}, {x: 0.484450587, y: 3.82795}, {x: 0.885714286, y: null}, {x: 0.62562396, y: null}, {x: 0.755060729, y: null}, {x: 0.497790055, y: null}, {x: 0.710113339, y: null}, {x: 0.0, y: null}, {x: 0.762780012, y: null}, {x: 0.566579635, y: null}, {x: 0.878341517, y: null}, {x: 0.726735598, y: null}, {x: 0.755205402, y: null}, {x: 0.862957938, y: null}, {x: 0.633333333, y: null}, {x: 0.731067961, y: 0.17529}, {x: 0.668428005, y: null}, {x: 0.570669501, y: null}, {x: 0.481553398, y: null}, {x: 0.559139785, y: null}, {x: 0.556708673, y: null}, {x: 0.293277311, y: null}, {x: 0.728453365, y: null}, {x: 0.491496599, y: 16.942}, {x: 0.398455599, y: null}, {x: 0.310460251, y: null}, {x: 0.047406082, y: null}, {x: 0.012482663, y: null}, {x: 0.06820365, y: null}, {x: 0.058823529, y: null}, {x: 0.036275695, y: null}, {x: 0.098478066, y: null}, {x: 0.141903172, y: null}, {x: 0.0, y: null}, {x: 0.038062284, y: null}, {x: 0.018664752, y: null}, {x: 0.003933137, y: null}, {x: 0.0, y: null}, {x: 0.045992116, y: null}, {x: 0.22675737, y: null}, {x: 0.120762712, y: null}, {x: 0.128514056, y: null}, {x: 0.391908976, y: null}, {x: 0.143407122, y: null}, {x: 0.288095238, y: null}, {x: 0.351945855, y: null}, {x: 0.18487395, y: null}, {x: 0.104551046, y: null}, {x: 0.171851852, y: null}, {x: 0.29661017, y: null}, {x: 0.888888889, y: null}, {x: 0.90530303, y: null}, {x: 0.029115342, y: null}, {x: 0.12312812, y: null}, {x: 0.28343667, y: null}, {x: 0.131437356, y: null}, {x: 0.07436919, y: null}, {x: 0.71656051, y: null}, {x: 0.605143722, y: null}, {x: 0.448079659, y: null}, {x: 0.822801303, y: null}, {x: 0.147282291, y: null}, {x: 0.0, y: null}, {x: 0.244525547, y: null}, {x: 0.126931567, y: null}, {x: 0.765264586, y: null}, {x: 0.411953042, y: null}, {x: 0.0625, y: null}, {x: 0.642748092, y: null}, {x: 0.259958071, y: null}, {x: 0.210643016, y: null}, {x: 0.372171946, y: null}, {x: 1.0, y: null}, {x: 0.320119671, y: null}, {x: 0.756920999, y: null}, {x: 1.0, y: null}, {x: 0.315023164, y: null}, {x: 0.270172258, y: null}, {x: 0.224815725, y: null}, {x: 0.068907563, y: null}, {x: 0.522633745, y: null}, {x: 0.314629259, y: 180.08110000000002}, {x: 0.923857868, y: null}, {x: 0.221774194, y: null}, {x: 0.367239102, y: null}, {x: 0.386010363, y: null}, {x: 0.844854674, y: null}, {x: 0.21399177, y: null}, {x: 0.315594974, y: null}, {x: 0.541598695, y: null}, {x: 0.376772451, y: null}, {x: 0.193430657, y: null}, {x: 0.389344262, y: null}, {x: 0.224582701, y: null}, {x: 0.777003484, y: null}, {x: 0.44488978, y: null}, {x: 0.33748702, y: null}, {x: 0.300083126, y: null}, {x: 0.737172775, y: null}, {x: 0.516766982, y: null}, {x: 0.430693069, y: null}, {x: 0.246899662, y: null}, {x: 0.427958834, y: null}, {x: 0.330396476, y: null}, {x: 0.975853946, y: null}, {x: 0.724309392, y: null}, {x: 0.821090047, y: null}, {x: 0.819124424, y: null}, {x: 0.899148658, y: null}, {x: 0.867975626, y: null}, {x: 1.0, y: null}, {x: 0.79163034, y: null}, {x: 0.993857494, y: null}, {x: 0.598896044, y: null}, {x: 1.0, y: null}, {x: 0.896551724, y: null}, {x: 0.599669422, y: null}, {x: 0.96039604, y: null}, {x: 0.494479495, y: null}, {x: 0.318411552, y: null}, {x: 0.261329305, y: null}, {x: 0.358070501, y: null}, {x: 0.425316456, y: null}, {x: 0.840485075, y: null}, {x: 0.770919067, y: null}, {x: 0.690140845, y: null}, {x: 0.429850746, y: null}, {x: 0.462167689, y: null}, {x: 0.634565778, y: null}, {x: 0.474806202, y: null}, {x: 0.669588081, y: null}, {x: 0.97705803, y: null}, {x: 1.0, y: null}, {x: 0.693979933, y: null}, {x: 0.957512953, y: null}, {x: 0.937823834, y: null}, {x: 0.844132029, y: null}, {x: 0.544991511, y: null}, {x: 0.590147783, y: null}, {x: 0.774659182, y: null}, {x: 0.401937046, y: null}, {x: 0.83006536, y: null}, {x: 0.90625, y: null}, {x: 0.98509687, y: null}, {x: 0.934607646, y: null}, {x: 0.947420635, y: null}, {x: 0.936672968, y: null}, {x: 1.0, y: null}, {x: 0.910276074, y: null}, {x: 0.973387097, y: null}, {x: 0.914236707, y: null}, {x: 0.97542735, y: null}, {x: 0.957678356, y: null}, {x: 0.853249476, y: null}, {x: 0.962488564, y: null}, {x: 0.903369358, y: null}, {x: 0.994747899, y: null}, {x: 0.975, y: null}, {x: 0.822168088, y: null}, {x: 0.959434822, y: null}, {x: 0.798618684, y: null}, {x: 0.859937402, y: null}, {x: 0.978483607, y: null}, {x: 0.985623003, y: null}, {x: 1.0, y: null}, {x: 0.843520782, y: null}, {x: 0.913366337, y: null}, {x: 0.92920354, y: null}, {x: 1.0, y: null}, {x: 0.957605985, y: null}, {x: 0.933854908, y: null}, {x: 0.982142857, y: null}, {x: 0.95256167, y: null}, {x: 0.98359375, y: null}, {x: 0.961248655, y: null}, {x: 0.898911353, y: null}, {x: 0.899676375, y: null}, {x: 0.927583937, y: null}, {x: 0.3, y: null}, {x: 0.206896552, y: null}, {x: 0.361506276, y: null}, {x: 0.38247012, y: null}, {x: 0.893382353, y: null}, {x: 0.579943899, y: null}, {x: 0.887921654, y: null}, {x: 0.419287212, y: null}, {x: 0.325657895, y: null}, {x: 0.269982238, y: null}, {x: 0.559545183, y: null}, {x: 0.216145833, y: null}, {x: 0.658682635, y: null}, {x: 0.705970149, y: null}, {x: 0.54945055, y: null}, {x: 0.697727273, y: null}, {x: 0.524806202, y: null}, {x: 0.793456033, y: null}, {x: 0.835274542, y: null}, {x: 0.98498749, y: null}, {x: 0.913072329, y: null}, {x: 0.939973615, y: null}, {x: 0.690938511, y: null}, {x: 0.955284553, y: null}, {x: 1.0, y: null}, {x: 0.904261206, y: null}, {x: 0.801587302, y: null}, {x: 0.630094044, y: null}, {x: 0.942454492, y: null}, {x: 0.974842767, y: null}, {x: 1.0, y: null}, {x: 0.946666667, y: null}, {x: 0.988717949, y: null}, {x: 0.89332004, y: null}, {x: 1.0, y: null}, {x: 0.88372093, y: null}, {x: 0.994126285, y: null}, {x: 0.95996732, y: null}, {x: 0.925461741, y: null}, {x: 0.865158371, y: null}, {x: 0.935275081, y: null}, {x: 0.988372093, y: null}, {x: 0.711286089, y: null}, {x: 0.954587581, y: null}, {x: 0.129783694, y: null}, {x: 0.8126294, y: null}, {x: 0.746190684, y: null}, {x: 0.768374165, y: null}, {x: 0.536231884, y: null}, {x: 0.887840671, y: null}, {x: 0.823708207, y: null}, {x: 0.989473684, y: null}, {x: 0.813333333, y: null}, {x: 0.954044118, y: null}, {x: 0.989690722, y: null}, {x: 1.0, y: null}, {x: 0.962962963, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.99339498, y: null}, {x: 0.953519256, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.936858721, y: null}, {x: 0.970588235, y: null}, {x: 0.990749306, y: null}, {x: 1.0, y: null}, {x: 0.964849354, y: null}, {x: 0.977808599, y: null}, {x: 1.0, y: null}, {x: 0.955991875, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.958022388, y: null}, {x: 0.858044164, y: null}, {x: 0.743494424, y: null}, {x: 0.921363953, y: null}, {x: 0.954173486, y: null}, {x: 0.760252366, y: null}, {x: 0.578364566, y: null}, {x: 0.738947368, y: null}, {x: 0.921259843, y: null}, {x: 0.971919771, y: null}, {x: 0.561359867, y: null}, {x: 0.516802906, y: null}, {x: 0.537148594, y: null}, {x: 0.618548049, y: null}, {x: 0.225868726, y: null}, {x: 0.101364522, y: null}, {x: 0.117318436, y: null}, {x: 0.266554904, y: null}, {x: 0.05338809, y: null}, {x: 0.163829787, y: null}, {x: 0.012658228, y: null}, {x: 0.355844156, y: null}, {x: 0.459930314, y: null}, {x: 0.370437956, y: null}, {x: 0.464351006, y: null}, {x: 0.405940594, y: null}, {x: 0.515625, y: null}, {x: 0.740243902, y: null}, {x: 0.75631769, y: null}, {x: 0.864098837, y: null}, {x: 0.806288602, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.979397781, y: null}, {x: 1.0, y: null}, {x: 0.987179487, y: null}, {x: 0.977321049, y: null}, {x: 0.981017192, y: null}, {x: 0.963066854, y: null}, {x: 0.981376518, y: null}, {x: 0.981868132, y: null}, {x: 0.850109409, y: null}, {x: 1.0, y: null}, {x: 0.988310929, y: null}, {x: 1.0, y: null}, {x: 0.961802903, y: null}, {x: 0.56514658, y: null}, {x: 0.939329051, y: null}, {x: 0.341866877, y: null}, {x: 0.607954546, y: null}, {x: 0.128, y: null}, {x: 0.870377288, y: null}, {x: 0.798758865, y: null}, {x: 0.389911384, y: null}, {x: 0.830703013, y: null}, {x: 0.443678161, y: null}, {x: 0.83125, y: null}, {x: 0.385527877, y: null}, {x: 0.509274874, y: null}, {x: 0.379495027, y: null}, {x: 0.365561694, y: null}, {x: 0.126103405, y: null}, {x: 0.209809264, y: null}, {x: 0.209937888, y: null}, {x: 0.491907108, y: null}, {x: 0.4296741, y: null}, {x: 0.498538012, y: null}, {x: 0.167065582, y: null}, {x: 0.191530318, y: null}, {x: 0.268913858, y: null}, {x: 0.159127195, y: null}, {x: 0.36949783, y: null}, {x: 0.091051805, y: null}, {x: 0.162550259, y: null}, {x: 0.295734597, y: null}, {x: 0.317002882, y: null}, {x: 0.270323213, y: null}, {x: 0.177142857, y: null}, {x: 0.163375224, y: null}, {x: 0.557163531, y: null}, {x: 0.551538837, y: null}, {x: 0.437726723, y: null}, {x: 0.626188735, y: null}, {x: 0.718019257, y: null}, {x: 0.506273063, y: null}, {x: 0.477842004, y: null}, {x: 0.298634812, y: null}, {x: 0.455544456, y: null}, {x: 0.171648988, y: null}, {x: 0.216971545, y: null}, {x: 0.250426864, y: null}, {x: 0.452222222, y: null}, {x: 0.409930716, y: null}, {x: 0.721615721, y: null}, {x: 0.42962963, y: null}, {x: 0.227848101, y: null}, {x: 0.405535499, y: null}, {x: 0.398365679, y: null}, {x: 0.344234079, y: null}, {x: 0.41503268, y: null}, {x: 0.251824818, y: null}, {x: 0.040609137, y: null}, {x: 0.072625698, y: null}, {x: 0.434724092, y: null}, {x: 0.206680585, y: null}, {x: 0.185421995, y: null}, {x: 0.366317793, y: null}, {x: 0.191176471, y: null}, {x: 0.015325671, y: null}, {x: 0.209486166, y: null}, {x: 0.125948407, y: null}, {x: 0.167553192, y: null}, {x: 0.079107505, y: null}, {x: 0.302295918, y: null}, {x: 0.151552795, y: null}, {x: 0.313708999, y: null}, {x: 0.460260116, y: null}, {x: 0.259026688, y: null}, {x: 0.264691598, y: null}, {x: 0.582743363, y: null}, {x: 0.232186732, y: null}, {x: 0.959863946, y: null}, {x: 0.541843425, y: null}, {x: 0.418699187, y: null}, {x: 0.882226981, y: null}, {x: 0.593684211, y: null}, {x: 0.383096367, y: null}, {x: 0.776843467, y: null}, {x: 0.596029777, y: null}, {x: 0.928838951, y: null}, {x: 0.747878788, y: null}, {x: 0.948790896, y: null}, {x: 0.689948893, y: null}, {x: 0.703241895, y: null}, {x: 0.772727273, y: null}, {x: 0.41819464, y: null}, {x: 0.603074141, y: null}, {x: 0.89, y: null}, {x: 0.469309463, y: null}, {x: 0.589952769, y: null}, {x: 0.449929478, y: null}, {x: 0.979653353, y: null}, {x: 0.777310924, y: null}, {x: 0.878103838, y: null}, {x: 0.809756098, y: null}, {x: 0.921372032, y: null}, {x: 0.989100817, y: null}, {x: 0.971918877, y: null}, {x: 1.0, y: null}, {x: 0.991647684, y: null}, {x: 1.0, y: null}, {x: 0.982857143, y: null}, {x: 0.976762505, y: null}, {x: 0.645517241, y: null}, {x: 0.817280453, y: null}, {x: 0.987250996, y: null}, {x: 0.932067202, y: null}, {x: 0.815899582, y: null}, {x: 0.884727911, y: null}, {x: 1.0, y: null}, {x: 0.827464789, y: null}, {x: 0.785265049, y: null}, {x: 0.984095427, y: null}, {x: 0.946226415, y: null}, {x: 0.902363823, y: null}, {x: 0.664714495, y: null}, {x: 0.379110252, y: null}, {x: 0.38974359, y: 0.028}, {x: 0.734312417, y: null}, {x: 0.87109375, y: null}, {x: 0.385919166, y: null}, {x: 0.906862745, y: null}, {x: 0.933083957, y: null}, {x: 0.824945295, y: null}, {x: 0.926671459, y: null}, {x: 0.790364583, y: null}, {x: 0.654173765, y: null}, {x: 0.839228296, y: null}, {x: 0.0, y: 1.660842}, {x: 0.798481712, y: null}, {x: 0.796033994, y: null}, {x: 0.746153846, y: null}, {x: 0.2675, y: null}, {x: 0.596283784, y: null}, {x: 0.918080116, y: null}, {x: 0.729691877, y: null}, {x: 0.81205165, y: null}, {x: 0.876728111, y: null}, {x: 0.687378641, y: null}, {x: 0.607526882, y: null}, {x: 0.647450111, y: null}, {x: 0.378147029, y: null}, {x: 0.194011976, y: null}, {x: 0.465058236, y: null}, {x: 0.709502708, y: null}, {x: 0.558080808, y: null}, {x: 0.338675214, y: null}, {x: 0.747587231, y: null}, {x: 0.185361973, y: null}, {x: 0.445157152, y: null}, {x: 0.445026178, y: null}, {x: 0.360772358, y: null}, {x: 0.440618956, y: null}, {x: 0.191694833, y: null}, {x: 0.274709302, y: null}, {x: 0.324046921, y: null}, {x: 0.681192661, y: null}, {x: 0.481961147, y: null}, {x: 0.404069767, y: null}, {x: 0.317683881, y: null}, {x: 0.44, y: null}, {x: 0.537572254, y: null}, {x: 0.398268398, y: null}, {x: 0.52345679, y: null}, {x: 0.405707196, y: null}, {x: 0.097222222, y: null}, {x: 0.05942275, y: null}, {x: 0.344021376, y: null}, {x: 0.577702703, y: null}, {x: 0.512280702, y: null}, {x: 0.570873786, y: null}, {x: 0.466152999, y: null}, {x: 0.381076389, y: null}, {x: 0.690409683, y: null}, {x: 0.448402948, y: null}, {x: 0.688186813, y: null}, {x: 0.490853659, y: null}, {x: 0.89245157, y: null}, {x: 0.707109737, y: null}, {x: 0.726199262, y: null}, {x: 0.825484765, y: null}, {x: 0.553496504, y: null}, {x: 0.575206612, y: null}, {x: 0.50310559, y: null}, {x: 0.588754135, y: null}, {x: 0.088575096, y: null}, {x: 0.127673364, y: null}, {x: 0.185185185, y: null}, {x: 0.533102553, y: null}, {x: 0.227772228, y: null}, {x: 0.121306376, y: null}, {x: 0.122241087, y: null}, {x: 0.190476191, y: null}, {x: 0.017906336, y: null}, {x: 0.094555874, y: null}, {x: 0.085714286, y: null}, {x: 0.092838196, y: null}, {x: 0.294678316, y: null}, {x: 0.178243775, y: null}, {x: 0.193396226, y: null}, {x: 0.212290503, y: null}, {x: 0.286282306, y: null}, {x: 0.10206995, y: null}, {x: 0.75, y: null}, {x: 0.366568915, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.656, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.25, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.787234043, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.067961165, y: null}, {x: 0.043778802, y: null}, {x: 0.198767334, y: null}, {x: 0.038544825, y: null}, {x: 0.084019769, y: null}, {x: 0.229545455, y: null}, {x: 0.075669383, y: null}, {x: 0.117296223, y: null}, {x: 0.120103093, y: null}, {x: 0.157287157, y: null}, {x: 0.328542095, y: null}, {x: 0.078231293, y: null}, {x: 0.061336254, y: null}, {x: 0.012320329, y: null}, {x: 0.121134021, y: null}, {x: 0.194891202, y: null}, {x: 0.020657995, y: null}, {x: 0.096997691, y: null}, {x: 0.038580247, y: null}, {x: 0.164879357, y: null}, {x: 0.102564103, y: null}, {x: 0.179721288, y: null}, {x: 0.055619266, y: null}, {x: 0.026180698, y: null}, {x: 0.101665206, y: null}, {x: 0.04972805, y: null}, {x: 0.02393617, y: null}, {x: 0.150711514, y: null}, {x: 0.03148855, y: null}, {x: 0.106864275, y: null}, {x: 0.0, y: null}, {x: 0.011568123, y: null}, {x: 0.142474019, y: null}, {x: 0.053874539, y: null}, {x: 0.227558605, y: null}, {x: 0.004094631, y: null}, {x: 0.255691769, y: null}, {x: 0.033484163, y: null}, {x: 0.160662123, y: null}, {x: 0.207201889, y: null}, {x: 0.308992563, y: null}, {x: 0.094020173, y: null}, {x: 0.158730159, y: null}, {x: 0.109574468, y: null}, {x: 0.127981385, y: null}, {x: 0.318181818, y: null}, {x: 0.263042525, y: null}, {x: 0.088314486, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020628684, y: null}, {x: 0.0, y: null}, {x: 0.319881054, y: null}, {x: 0.088631985, y: null}, {x: 0.274529237, y: null}, {x: 0.274153997, y: null}, {x: 0.245138889, y: null}, {x: 0.320234114, y: null}, {x: 0.181594488, y: null}, {x: 0.14953271, y: null}, {x: 0.523809524, y: null}, {x: 0.264473684, y: null}, {x: 0.193032015, y: null}, {x: 0.253029223, y: null}, {x: 0.323599053, y: null}, {x: 0.214572193, y: null}, {x: 0.364973262, y: null}, {x: 0.663766633, y: null}, {x: 0.272655323, y: null}, {x: 0.377840909, y: null}, {x: 0.23707035, y: null}, {x: 0.278253039, y: null}, {x: 0.475390156, y: 626.415468}, {x: 0.306220096, y: null}, {x: 0.635926223, y: null}, {x: 0.394939494, y: null}, {x: 0.612172682, y: null}, {x: 0.124439462, y: null}, {x: 0.083835947, y: null}, {x: 0.181069959, y: null}, {x: 0.064840183, y: null}, {x: 0.404085258, y: null}, {x: 0.388400703, y: null}, {x: 0.630088496, y: 0.316}, {x: 0.496212121, y: 13.296268}, {x: 0.475308642, y: null}, {x: 0.505922166, y: null}, {x: 0.32122905, y: null}, {x: 0.308928571, y: null}, {x: 0.331515812, y: 0.22}, {x: 0.015680324, y: null}, {x: 0.441458733, y: null}, {x: 0.216918429, y: 0.171}, {x: 0.28287708, y: null}, {x: 0.394688645, y: null}, {x: 0.176153846, y: null}, {x: 0.411648569, y: null}, {x: 0.659672131, y: null}, {x: 0.402860548, y: null}, {x: 0.528710726, y: null}, {x: 0.61255116, y: null}, {x: 0.736170213, y: null}, {x: 0.547906317, y: null}, {x: 0.433986102, y: null}, {x: 0.472334683, y: null}, {x: 0.621359223, y: 9.505065}, {x: 0.305333333, y: null}, {x: 0.430954588, y: null}, {x: 0.298128342, y: 3.291023}, {x: 0.367078189, y: null}, {x: 0.264084507, y: null}, {x: 0.234061931, y: null}, {x: 0.761458333, y: null}, {x: 0.297307547, y: null}, {x: 0.17340591, y: null}, {x: 0.036774194, y: null}, {x: 0.097979413, y: null}, {x: 0.176445211, y: null}, {x: 0.26625387, y: null}, {x: 0.100612423, y: null}, {x: 0.128654971, y: null}, {x: 0.182987552, y: null}, {x: 0.168518519, y: null}, {x: 0.018231541, y: null}, {x: 0.243562557, y: null}, {x: 0.143461701, y: null}, {x: 0.13381295, y: null}, {x: 0.146788991, y: null}, {x: 0.200183655, y: null}, {x: 0.071266111, y: null}, {x: 0.384536083, y: null}, {x: 0.305153445, y: null}, {x: 0.068014706, y: null}, {x: 0.125146199, y: null}, {x: 0.222065064, y: null}, {x: 0.201398601, y: null}, {x: 0.113323124, y: null}, {x: 0.203381402, y: null}, {x: 0.422924901, y: null}, {x: 0.065243536, y: null}, {x: 0.069740298, y: null}, {x: 0.060737527, y: null}, {x: 0.145152355, y: null}, {x: 0.026751592, y: null}, {x: 0.104606526, y: null}, {x: 0.031273269, y: null}, {x: 0.014634146, y: null}, {x: 0.10607621, y: null}, {x: 0.069230769, y: null}, {x: 0.055521283, y: null}, {x: 0.114308553, y: null}, {x: 0.038579882, y: null}, {x: 0.030243261, y: null}, {x: 0.114013059, y: null}, {x: 0.092827004, y: null}, {x: 0.0, y: null}, {x: 0.032031593, y: 0.016676}, {x: 0.029350105, y: null}, {x: 0.05678392, y: null}, {x: 0.156293223, y: null}, {x: 0.033269962, y: null}, {x: 0.009922041, y: null}, {x: 0.025949954, y: null}, {x: 0.055891239, y: null}, {x: 0.040254237, y: null}, {x: 0.051546392, y: null}, {x: 0.065263158, y: null}, {x: 0.027417027, y: null}, {x: 0.021676301, y: null}, {x: 0.116839917, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066822978, y: null}, {x: 0.108655617, y: null}, {x: 0.101344364, y: null}, {x: 0.012567325, y: null}, {x: 0.265907569, y: null}, {x: 0.0, y: null}, {x: 0.148509174, y: null}, {x: 0.144740877, y: null}, {x: 0.074492099, y: null}, {x: 0.180823346, y: null}, {x: 0.052456286, y: null}, {x: 0.127344521, y: null}, {x: 0.115686275, y: null}, {x: 0.158480074, y: null}, {x: 0.155059133, y: null}, {x: 0.048954161, y: null}, {x: 0.113152094, y: null}, {x: 0.239414935, y: null}, {x: 0.051219512, y: null}, {x: 0.083287369, y: null}, {x: 0.188967574, y: null}, {x: 0.167602245, y: null}, {x: 0.062605753, y: null}, {x: 0.117283951, y: null}, {x: 0.516375546, y: null}, {x: 0.239130435, y: null}, {x: 0.514261977, y: null}, {x: 0.336241611, y: null}, {x: 0.339873861, y: null}, {x: 0.487028302, y: null}, {x: 0.524076148, y: null}, {x: 0.148271277, y: null}, {x: 0.179429429, y: null}, {x: 0.180811808, y: null}, {x: 0.308267165, y: null}, {x: 0.291991495, y: null}, {x: 0.125, y: null}, {x: 0.307068366, y: null}, {x: 0.196452933, y: null}, {x: 0.252586207, y: null}, {x: 0.674233825, y: null}, {x: 0.807727273, y: null}, {x: 0.43516101, y: null}, {x: 0.717622081, y: null}, {x: 0.363636364, y: null}, {x: 0.696245734, y: null}, {x: 0.513239437, y: null}, {x: 0.148484063, y: null}, {x: 0.092592593, y: null}, {x: 0.296751536, y: null}, {x: 0.161997126, y: null}, {x: 0.202476329, y: null}, {x: 0.217691343, y: null}, {x: 0.111269615, y: null}, {x: 0.324576564, y: null}, {x: 0.305457747, y: null}, {x: 0.202011735, y: null}, {x: 0.170222424, y: null}, {x: 0.015, y: null}, {x: 0.438636364, y: null}, {x: 0.213468014, y: null}, {x: 0.176470588, y: null}, {x: 0.06835206, y: null}, {x: 0.206594539, y: null}, {x: 0.274332649, y: null}, {x: 0.177458034, y: null}, {x: 0.116182573, y: null}, {x: 0.666083916, y: null}, {x: 0.707762557, y: null}, {x: 0.429059181, y: null}, {x: 0.43164557, y: null}, {x: 0.418535127, y: null}, {x: 0.405088063, y: null}, {x: 0.548596112, y: null}, {x: 0.156736939, y: null}, {x: 0.656360424, y: null}, {x: 0.468659595, y: null}, {x: 0.39916318, y: null}, {x: 0.282939189, y: null}, {x: 0.313953488, y: null}, {x: 0.795275591, y: null}, {x: 0.417413572, y: null}, {x: 0.715487383, y: null}, {x: 0.354214123, y: null}, {x: 0.710191083, y: null}, {x: 0.416763679, y: null}, {x: 0.860750361, y: null}, {x: 0.895620876, y: null}, {x: 0.798641137, y: null}, {x: 0.898333333, y: null}, {x: 0.796319018, y: null}, {x: 0.699502488, y: null}, {x: 0.591339648, y: null}, {x: 0.572490706, y: null}, {x: 0.698689956, y: null}, {x: 0.596178344, y: null}, {x: 0.722841226, y: null}, {x: 0.939336493, y: null}, {x: 0.509512485, y: null}, {x: 0.212162162, y: null}, {x: 0.641447368, y: null}, {x: 0.475903615, y: null}, {x: 0.31610338, y: null}, {x: 0.28, y: null}, {x: 0.177543186, y: null}, {x: 0.25378614, y: null}, {x: 0.577710843, y: null}, {x: 0.497363796, y: null}, {x: 0.512087912, y: null}, {x: 0.097472924, y: null}, {x: 0.454545455, y: null}, {x: 0.382633588, y: null}, {x: 0.747435897, y: null}, {x: 0.582763338, y: null}, {x: 0.902116402, y: null}, {x: 0.814298169, y: null}, {x: 0.584115524, y: null}, {x: 0.613583138, y: null}, {x: 0.701947813, y: null}, {x: 0.913123, y: null}, {x: 0.609960828, y: null}, {x: 0.542748918, y: null}, {x: 0.359142607, y: null}, {x: 0.4, y: null}, {x: 0.331447964, y: null}, {x: 0.503777148, y: null}, {x: 0.503669725, y: null}, {x: 0.397594175, y: null}, {x: 0.577444682, y: null}, {x: 0.466273187, y: null}, {x: 0.373517787, y: null}, {x: 0.264816557, y: null}, {x: 0.187901318, y: null}, {x: 0.495422177, y: null}, {x: 0.359107421, y: null}, {x: 0.718476583, y: null}, {x: 0.737869198, y: null}, {x: 0.827111984, y: null}, {x: 0.962343096, y: null}, {x: 0.784593438, y: null}, {x: 0.6621881, y: null}, {x: 0.533774834, y: 563.320881}, {x: 0.712809917, y: null}, {x: 0.751282051, y: null}, {x: 0.677623262, y: null}, {x: 0.4171123, y: null}, {x: 0.374291115, y: null}, {x: 0.623728814, y: null}, {x: 0.640659341, y: null}, {x: 0.640378549, y: null}, {x: 0.612301957, y: null}, {x: 0.514124294, y: null}, {x: 0.364261168, y: null}, {x: 0.592823713, y: null}, {x: 0.384830154, y: null}, {x: 0.288368336, y: null}, {x: 0.560229446, y: null}, {x: 0.161290323, y: null}, {x: 0.558045977, y: null}, {x: 0.362085308, y: null}, {x: 0.346335697, y: null}, {x: 0.758349705, y: null}, {x: 0.216393443, y: null}, {x: 0.56954612, y: null}, {x: 0.582934609, y: null}, {x: 0.72122905, y: null}, {x: 0.290647482, y: null}, {x: 0.440602342, y: null}, {x: 0.569943289, y: null}, {x: 0.305949009, y: null}, {x: 0.164930556, y: null}, {x: 0.077361564, y: null}, {x: 0.029735683, y: null}, {x: 0.208357858, y: null}, {x: 0.134852802, y: null}, {x: 0.067017083, y: null}, {x: 0.183571429, y: null}, {x: 0.158490566, y: null}, {x: 0.016352201, y: null}, {x: 0.114345114, y: null}, {x: 0.061079545, y: null}, {x: 0.040195546, y: null}, {x: 0.10138585, y: null}, {x: 0.251503006, y: null}, {x: 0.142676768, y: null}, {x: 0.075, y: null}, {x: 0.100595632, y: null}, {x: 0.0, y: null}, {x: 0.039182283, y: null}, {x: 0.034046693, y: null}, {x: 0.060550459, y: null}, {x: 0.172104405, y: null}, {x: 0.10206995, y: null}, {x: 0.145962733, y: null}, {x: 0.136382365, y: 58.2}, {x: 0.065300896, y: null}, {x: 0.118259224, y: null}, {x: 0.08449848, y: null}, {x: 0.184141547, y: null}, {x: 0.098861284, y: null}, {x: 0.11920904, y: null}, {x: 0.307359307, y: null}, {x: 0.283287671, y: null}, {x: 0.330129745, y: null}, {x: 0.217668126, y: null}, {x: 0.331989247, y: null}, {x: 0.119749447, y: null}, {x: 0.243478261, y: null}, {x: 0.184416601, y: null}, {x: 0.285163777, y: null}, {x: 0.489977728, y: null}, {x: 0.376275028, y: null}, {x: 0.607532957, y: null}, {x: 0.627457744, y: null}, {x: 0.471323112, y: null}, {x: 0.399323998, y: null}, {x: 0.166774822, y: null}, {x: 0.317904374, y: null}, {x: 0.197849462, y: null}, {x: 0.312109153, y: null}, {x: 0.234982332, y: null}, {x: 0.405090138, y: null}, {x: 0.422535211, y: null}, {x: 0.152892562, y: null}, {x: 0.314542484, y: null}, {x: 0.343944864, y: null}, {x: 0.143106457, y: null}, {x: 0.204736211, y: null}, {x: 0.088293651, y: null}, {x: 0.153590426, y: null}, {x: 0.288182446, y: null}, {x: 0.223561644, y: null}, {x: 0.135736538, y: null}, {x: 0.336538462, y: null}, {x: 0.089147287, y: null}, {x: 0.357524013, y: null}, {x: 0.218418908, y: null}, {x: 0.196135266, y: null}, {x: 0.174641148, y: null}, {x: 0.151532033, y: null}, {x: 0.14653081, y: null}, {x: 0.33042394, y: null}, {x: 0.195134849, y: null}, {x: 0.330195024, y: null}, {x: 0.273209549, y: null}, {x: 0.198507463, y: null}, {x: 0.076923077, y: null}, {x: 0.209351754, y: null}, {x: 0.061674009, y: null}, {x: 0.339228296, y: null}, {x: 0.432848589, y: null}, {x: 0.231901841, y: null}, {x: 0.215733591, y: null}, {x: 0.35840708, y: null}, {x: 0.723303525, y: null}, {x: 0.863775199, y: null}, {x: 0.269912931, y: null}, {x: 0.146327684, y: null}, {x: 0.206043956, y: null}, {x: 0.112693758, y: null}, {x: 0.388300127, y: null}, {x: 0.164356436, y: null}, {x: 0.036382536, y: null}, {x: 0.083769634, y: null}, {x: 0.210912907, y: null}, {x: 0.24656782, y: null}, {x: 0.135524798, y: null}, {x: 0.196440794, y: null}, {x: 0.437565036, y: null}, {x: 0.216939079, y: null}, {x: 0.335243553, y: null}, {x: 0.246590909, y: null}, {x: 0.078651685, y: null}, {x: 0.169191919, y: null}, {x: 0.569558102, y: null}, {x: 0.571766562, y: null}, {x: 0.483412322, y: null}, {x: 0.283746557, y: null}, {x: 0.23183391, y: null}, {x: 0.107407407, y: null}, {x: 0.649247823, y: null}, {x: 0.047979798, y: null}, {x: 0.090831191, y: null}, {x: 0.033767487, y: null}, {x: 0.064516129, y: null}, {x: 0.034904014, y: null}, {x: 0.046498599, y: null}, {x: 0.169464429, y: null}, {x: 0.15323741, y: null}, {x: 0.136671177, y: null}, {x: 0.01056338, y: null}, {x: 0.040816327, y: null}, {x: 0.227436823, y: null}, {x: 0.06150207, y: null}, {x: 0.016949153, y: null}, {x: 0.012979351, y: null}, {x: 0.052207294, y: null}, {x: 0.133512064, y: null}, {x: 0.046461372, y: null}, {x: 0.047107177, y: null}, {x: 0.04003268, y: null}, {x: 0.087699317, y: null}, {x: 0.034632035, y: null}, {x: 0.23402195, y: null}, {x: 0.309536494, y: null}, {x: 0.091117042, y: null}, {x: 0.218282112, y: null}, {x: 0.087459235, y: null}, {x: 0.146341463, y: null}, {x: 0.108806405, y: null}, {x: 0.05298913, y: null}, {x: 0.07495069, y: null}, {x: 0.128454452, y: null}, {x: 0.144308943, y: null}, {x: 0.023470839, y: null}, {x: 0.086061424, y: null}, {x: 0.11173577, y: null}, {x: 0.0, y: null}, {x: 0.04389851, y: null}, {x: 0.041025641, y: null}, {x: 0.022518766, y: null}, {x: 0.056775798, y: null}, {x: 0.094940662, y: null}, {x: 0.180946675, y: null}, {x: 0.127600555, y: null}, {x: 0.109302326, y: null}, {x: 0.190625, y: null}, {x: 0.043201455, y: null}, {x: 0.011371713, y: null}, {x: 0.111055023, y: null}, {x: 0.041469194, y: null}, {x: 0.309850746, y: null}, {x: 0.228867624, y: null}, {x: 0.316171617, y: null}, {x: 0.131147541, y: null}, {x: 0.338160136, y: null}, {x: 0.380246914, y: null}, {x: 0.468481375, y: null}, {x: 0.056133056, y: null}, {x: 0.139410188, y: null}, {x: 0.44945055, y: null}, {x: 0.397997497, y: null}, {x: 0.139433551, y: null}, {x: 0.118200134, y: null}, {x: 0.212598425, y: null}, {x: 0.144963145, y: null}, {x: 0.096373057, y: null}, {x: 0.07611336, y: null}, {x: 0.048411498, y: null}, {x: 0.134879725, y: null}, {x: 0.095196122, y: null}, {x: 0.013540961, y: null}, {x: 0.017918677, y: null}, {x: 0.047355164, y: null}, {x: 0.131503482, y: null}, {x: 0.0900369, y: null}, {x: 0.185089974, y: null}, {x: 0.38290788, y: null}, {x: 0.378737542, y: null}, {x: 0.235448005, y: null}, {x: 0.693144723, y: null}, {x: 0.720372836, y: null}, {x: 0.430147059, y: null}, {x: 0.667281106, y: null}, {x: 0.58412483, y: null}, {x: 0.538157151, y: null}, {x: 0.393564356, y: null}, {x: 0.097435897, y: null}, {x: 0.390350877, y: null}, {x: 0.296444954, y: null}, {x: 0.262979684, y: null}, {x: 0.120175439, y: null}, {x: 0.159151194, y: null}, {x: 0.038746439, y: null}, {x: 0.129694836, y: null}, {x: 0.097738877, y: null}, {x: 0.016155989, y: null}, {x: 0.205310881, y: null}, {x: 0.047037263, y: null}, {x: 0.081372549, y: null}, {x: 0.041294643, y: null}, {x: 0.013256484, y: null}, {x: 0.145522388, y: null}, {x: 0.0, y: null}, {x: 0.157942238, y: null}, {x: 0.0, y: null}, {x: 0.04584121, y: null}, {x: 0.527100945, y: null}, {x: 0.544263776, y: null}, {x: 0.287578288, y: null}, {x: 0.360753221, y: null}, {x: 0.241231822, y: null}, {x: 0.362308254, y: null}, {x: 0.245514636, y: null}, {x: 0.055185538, y: null}, {x: 0.160070361, y: null}, {x: 0.021712907, y: null}, {x: 0.117943548, y: null}, {x: 0.511073254, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.04731466375, y: 308.4353676616349}, {x: 0.15694694199999998, y: 98.79962604667965}, {x: 0.32998777737499996, y: 194.2272007047598}, {x: 0.720355499125, y: 166.85518154261746}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.04731466375, y: -106.832452773831}, {x: 0.15694694199999998, y: 17.44390871909539}, {x: 0.32998777737499996, y: 70.63814111612176}, {x: 0.720355499125, y: 54.54677561802417}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.04731466375, y: 723.7031880971008}, {x: 0.15694694199999998, y: 180.1553433742639}, {x: 0.32998777737499996, y: 317.8162602933979}, {x: 0.720355499125, y: 279.16358746721073}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LINGISOPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LINGISOPCT.html index 6950d9a3..78e13b9b 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LINGISOPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LINGISOPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.039933382671133444, y: 0.0}, {x: 0.007239188430662021, y: 0.0}, {x: 0.03439701499111111, y: 0.0}, {x: 0.010233046039523212, y: 0.0}, {x: 0.06417378421511842, y: 1399.429818}, {x: 0.0, y: 0.093729}, {x: 0.0, y: 0.0}, {x: 0.003999289046391753, y: 0.0}, {x: 0.0037025601676044712, y: 0.0}, {x: 0.0049289125067713034, y: 0.0}, {x: 0.014966530052618329, y: 0.0}, {x: 0.053468841542742715, y: 0.0}, {x: 0.0044380009851112965, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.013190623724497494, y: 0.0}, {x: 0.003219196753321101, y: 0.0}, {x: 0.01051368202998405, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.010559526850062933, y: 0.0}, {x: 0.0, y: 0.175}, {x: 0.013160244578492393, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0023512580408476657, y: 0.0}, {x: 0.007922240091655434, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006617795711895911, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004830918, y: 0.0}, {x: 0.021680217, y: 0.0}, {x: 0.00457222212778131, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006289308, y: 0.0}, {x: 0.018029193664089345, y: 0.0}, {x: 0.022727273, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.005003563966946377, y: 0.0}, {x: 0.007381747837992064, y: 0.0}, {x: 0.0026478666281785157, y: 0.0}, {x: 0.020994592960277836, y: 0.0}, {x: 0.04859663619715636, y: 33.039}, {x: 0.019027072484068475, y: 0.0}, {x: 0.006608501047441998, y: 0.0}, {x: 0.009474563295847994, y: 0.0}, {x: 0.005156035123618684, y: 0.0}, {x: 0.0257329971814543, y: 0.0}, {x: 0.027968715091375718, y: 0.0}, {x: 0.006477005232674881, y: 999.999999}, {x: 0.026793260918089094, y: 0.0}, {x: 0.1166509261705598, y: 2369.610135}, {x: 0.007053821895085066, y: 0.0}, {x: 0.017680516848688228, y: 0.0}, {x: 0.011623247108056685, y: 0.0}, {x: 0.1241828812766994, y: 1019.716757}, {x: 0.03148950954734647, y: 0.0}, {x: 0.009026674935931558, y: 40.416186}, {x: 0.018363538516596542, y: 0.0}, {x: 0.02868898468697302, y: 0.0}, {x: 0.049340860602952306, y: 0.0}, {x: 0.04678587951239182, y: 0.0}, {x: 0.020653735625, y: 0.0}, {x: 0.026923077000000004, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02383182411171776, y: 0.0}, {x: 0.010631831016014028, y: 1.335464}, {x: 0.010947437194533328, y: 0.072}, {x: 0.07173570414427947, y: 0.0}, {x: 0.1618207108917046, y: 176.850903}, {x: 0.023259510669214434, y: 0.0}, {x: 0.014476691854901351, y: 0.0}, {x: 0.049766846788247186, y: 0.0}, {x: 0.012166848756099146, y: 0.0}, {x: 0.004885197889594528, y: 0.0}, {x: 0.00849258856401225, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03625169108335529, y: 0.0}, {x: 0.006658033815681902, y: 0.0}, {x: 0.0033705656971770746, y: 0.0}, {x: 0.01604561046408798, y: 1.346}, {x: 0.007117995342950463, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.26856563273413014, y: 221.159543}, {x: 0.06025114840771245, y: 0.0}, {x: 0.038471136833818524, y: 57.7297}, {x: 0.03091207504829998, y: 0.0}, {x: 0.031097363627661877, y: 172.582673}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0027940542542399254, y: 0.0}, {x: 0.014402191017123683, y: 0.0}, {x: 0.016066746885108757, y: 0.0}, {x: 0.006689511606992075, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.01027114392693288, y: 0.0}, {x: 0.010373444, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0011091516966379984, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004914005, y: 0.0}, {x: 0.015177066, y: 0.0}, {x: 0.00486618, y: 0.0}, {x: 0.005935631042770927, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.010563306583408944, y: 1.405256}, {x: 0.01174743, y: 0.0}, {x: 0.04831697120752659, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02782064506193021, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04359369330501393, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.13103386904457948, y: 1111.110965}, {x: 0.0060930528733311885, y: 0.0}, {x: 0.08232598898342042, y: 0.0}, {x: 0.054127151582998544, y: 360.22096}, {x: 0.16527237713716217, y: 940.76283}, {x: 0.0401107755272884, y: 0.0}, {x: 0.041077128418988834, y: 0.0}, {x: 0.013557809711795092, y: 0.0}, {x: 0.021061820718431736, y: 388.743118}, {x: 0.014089268022739576, y: 0.0}, {x: 0.009282698606127182, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004524189674520548, y: 0.0}, {x: 0.002310217605359318, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.008953808959475106, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006537484241581405, y: 0.0}, {x: 0.01897441920597518, y: 0.0}, {x: 0.002073283769218424, y: 0.45}, {x: 0.0, y: 0.0}, {x: 0.009342114893737803, y: 0.0}, {x: 0.0177586806678733, y: 0.0}, {x: 0.02239376402092955, y: 0.0}, {x: 0.0161761439316228, y: 5e-05}, {x: 0.00917344360912634, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.10495939595890612, y: 3939.66886}, {x: 0.030937489959360104, y: 0.0}, {x: 0.012770880244096922, y: 0.0}, {x: 0.011047459562064647, y: 0.0}, {x: 0.02320474781604953, y: 396.4304}, {x: 0.01854185654682542, y: 0.0}, {x: 0.012256470873446095, y: 0.0}, {x: 0.02036621530100158, y: 0.0}, {x: 0.08294701108724732, y: 0.0}, {x: 0.06200026408120236, y: 0.0}, {x: 0.005021096240087448, y: 0.0}, {x: 0.02547953787991869, y: 0.0}, {x: 0.005662731115157227, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.007315573503675296, y: 0.0}, {x: 0.0326145658128064, y: 0.0}, {x: 0.047428084368129814, y: 0.0}, {x: 0.003880759436112311, y: 0.0}, {x: 0.013784081463967373, y: 0.0}, {x: 0.02034349730302353, y: 0.0}, {x: 0.039388738008276636, y: 0.0}, {x: 0.019332446883149626, y: 0.0}, {x: 0.04447142271643541, y: 68.97}, {x: 0.19293470458124237, y: 0.0}, {x: 0.23495687139732585, y: 0.0}, {x: 0.05794651540544533, y: 0.0}, {x: 0.06641627272675799, y: 132.94799999999998}, {x: 0.046547296501121105, y: 57.339039}, {x: 0.046566311633463926, y: 0.0}, {x: 0.03436831986987188, y: 0.0}, {x: 0.02565940415305712, y: 0.0}, {x: 0.009295918980245321, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03159781908068887, y: 0.0117}, {x: 0.01921898282395814, y: 0.0}, {x: 0.0049555448489847715, y: 0.0}, {x: 0.011186487727253048, y: 0.0}, {x: 0.023488896798661698, y: 0.0}, {x: 0.046869134281923276, y: 0.0}, {x: 0.013956284259535257, y: 0.0}, {x: 0.032872348204917315, y: 0.0}, {x: 0.05442506030433603, y: 0.0}, {x: 0.13039499567032742, y: 0.0}, {x: 0.057443366, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02206235530011341, y: 0.0}, {x: 0.030428357846463173, y: 0.0}, {x: 0.008839616943860802, y: 0.0002}, {x: null, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04434519421213818, y: 0.0}, {x: 0.028102384453224532, y: 0.0}, {x: 0.02563644618202608, y: 0.0}, {x: 0.022002409854010023, y: 0.0}, {x: 0.013285772587716321, y: 0.0}, {x: 0.0024730847239138945, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.027393624101815204, y: 0.0}, {x: 0.004283551264465409, y: 0.0}, {x: 0.027603609341902154, y: 0.0}, {x: 0.09226579579172779, y: 0.0}, {x: 0.04714182278413341, y: 0.0}, {x: 0.015648909997591005, y: 0.0}, {x: 0.011477568726863256, y: 0.0}, {x: 0.11535266242254427, y: 0.0}, {x: 0.04115249962362506, y: 0.0}, {x: 0.06119182302005388, y: 0.0}, {x: 0.027253039686177715, y: 0.0}, {x: 0.02840192219996364, y: 0.0}, {x: 0.009011235318208164, y: 0.0}, {x: 0.015148456984382695, y: 0.0}, {x: 0.05880981157813146, y: 0.0}, {x: 0.02575411223839662, y: 0.0}, {x: 0.011259348449295775, y: 3617.0713}, {x: 0.010553417110817129, y: 0.0}, {x: 0.03895164713019016, y: 21.541675}, {x: 0.014039894782260502, y: 0.0}, {x: 0.0017231909731291533, y: 0.0}, {x: 0.0, y: 0.021042}, {x: 0.0039717360743925225, y: 0.0}, {x: 0.001785646170277693, y: 0.0}, {x: 0.0029433224337388837, y: 0.0}, {x: 0.0027818627980613895, y: 0.0}, {x: 0.11527824156377282, y: 0.0}, {x: 0.022000841749398273, y: 0.0}, {x: 0.014303341292447272, y: 0.0}, {x: 0.013482474696282085, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.023929269157045394, y: 0.0}, {x: 0.001981510211919006, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.016662963304749284, y: 0.0}, {x: 0.003465932737315011, y: 0.0}, {x: 0.008751111266540873, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.009801381761360708, y: 0.0}, {x: 0.007878704126139356, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.11563748397268915, y: 1244.3365}, {x: 0.26013115203819526, y: 0.0}, {x: 0.18727500083120094, y: 0.0}, {x: 0.013955568717803497, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0037908745944472406, y: 0.0}, {x: 0.005141264450899032, y: 0.0}, {x: 0.01119886966704851, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03729849847371731, y: 626.415468}, {x: 0.04198287313932729, y: 26.799356}, {x: 0.011400869255181904, y: 0.0}, {x: 0.028147297120313244, y: 0.0}, {x: 0.05639627348148148, y: 0.0}, {x: 0.04464476063014912, y: 0.0}, {x: 0.007627765, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.016676}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0017972000823892893, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0022553063308917037, y: 0.0}, {x: 0.009843294067691135, y: 0.0}, {x: 0.10777815999275808, y: 563.320881}, {x: 0.0, y: 0.0}, {x: 0.01748011079139427, y: 0.0}, {x: 0.042046843307224996, y: 58.2}, {x: 0.017309658133874955, y: 0.0}, {x: 0.022241111509462154, y: 0.0}, {x: 0.019555328477539248, y: 0.0}, {x: 0.014011625951830444, y: 0.0}, {x: 0.04928325913596892, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.11838571743503093, y: 0.0}, {x: 0.008080379453093811, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0032910312864606007, y: 0.0}, {x: 0.014221929036323437, y: 0.0}, {x: 0.010538568917600582, y: 0.0}, {x: 0.006556882509145448, y: 0.0}, {x: 0.0029564901209637113, y: 0.0}, {x: 0.03019576794169643, y: 0.0}, {x: 0.013132862742070895, y: 0.0}, {x: 0.015010866958796993, y: 0.0}, {x: 0.0019501013783982367, y: 0.0}, {x: 0.08245319825154453, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.005221781507496012, y: 20.908100113300765}, {x: 0.018807056014812654, y: 47.80969365383626}, {x: 0.1478680908743817, y: 732.2265024203282}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.005221781507496012, y: -10.413730382598953}, {x: 0.018807056014812654, y: -1.8915978404878402}, {x: 0.1478680908743817, y: 384.07509208198434}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.005221781507496012, y: 52.22993060920048}, {x: 0.018807056014812654, y: 97.51098514816036}, {x: 0.1478680908743817, y: 1080.377912758672}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.039933382671133444, y: 0.0}, {x: 0.007239188430662021, y: 0.0}, {x: 0.03439701499111111, y: 0.0}, {x: 0.010233046039523212, y: 0.0}, {x: 0.06417378421511842, y: 1399.429818}, {x: 0.0, y: 0.093729}, {x: 0.0, y: 0.0}, {x: 0.003999289046391753, y: 0.0}, {x: 0.0037025601676044712, y: 0.0}, {x: 0.0049289125067713034, y: 0.0}, {x: 0.014966530052618329, y: 0.0}, {x: 0.053468841542742715, y: 0.0}, {x: 0.0044380009851112965, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.013190623724497494, y: 0.0}, {x: 0.003219196753321101, y: 0.0}, {x: 0.01051368202998405, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.010559526850062933, y: 0.0}, {x: 0.0, y: 0.175}, {x: 0.013160244578492393, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0023512580408476657, y: 0.0}, {x: 0.007922240091655434, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006617795711895911, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004830918, y: 0.0}, {x: 0.021680217, y: 0.0}, {x: 0.00457222212778131, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006289308, y: 0.0}, {x: 0.018029193664089345, y: 0.0}, {x: 0.022727273, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.005003563966946377, y: 0.0}, {x: 0.007381747837992064, y: 0.0}, {x: 0.0026478666281785157, y: 0.0}, {x: 0.020994592960277836, y: 0.0}, {x: 0.04859663619715636, y: 33.039}, {x: 0.019027072484068475, y: 0.0}, {x: 0.006608501047441998, y: 0.0}, {x: 0.009474563295847994, y: 0.0}, {x: 0.005156035123618684, y: 0.0}, {x: 0.0257329971814543, y: 0.0}, {x: 0.027968715091375718, y: 0.0}, {x: 0.006477005232674881, y: 999.999999}, {x: 0.026793260918089094, y: 0.0}, {x: 0.1166509261705598, y: 2369.610135}, {x: 0.007053821895085066, y: 0.0}, {x: 0.017680516848688228, y: 0.0}, {x: 0.011623247108056685, y: 0.0}, {x: 0.1241828812766994, y: 1019.716757}, {x: 0.03148950954734647, y: 0.0}, {x: 0.009026674935931558, y: 40.416186}, {x: 0.018363538516596542, y: 0.0}, {x: 0.02868898468697302, y: 0.0}, {x: 0.049340860602952306, y: 0.0}, {x: 0.04678587951239182, y: 0.0}, {x: 0.020653735625, y: 0.0}, {x: 0.026923077000000004, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02383182411171776, y: 0.0}, {x: 0.010631831016014028, y: 1.335464}, {x: 0.010947437194533328, y: 0.072}, {x: 0.07173570414427947, y: 0.0}, {x: 0.1618207108917046, y: 176.850903}, {x: 0.023259510669214434, y: 0.0}, {x: 0.014476691854901351, y: 0.0}, {x: 0.049766846788247186, y: 0.0}, {x: 0.012166848756099146, y: 0.0}, {x: 0.004885197889594528, y: 0.0}, {x: 0.00849258856401225, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03625169108335529, y: 0.0}, {x: 0.006658033815681902, y: 0.0}, {x: 0.0033705656971770746, y: 0.0}, {x: 0.01604561046408798, y: 1.346}, {x: 0.007117995342950463, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.26856563273413014, y: 221.159543}, {x: 0.06025114840771245, y: 0.0}, {x: 0.038471136833818524, y: 57.7297}, {x: 0.03091207504829998, y: 0.0}, {x: 0.031097363627661877, y: 172.582673}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0027940542542399254, y: 0.0}, {x: 0.014402191017123683, y: 0.0}, {x: 0.016066746885108757, y: 0.0}, {x: 0.006689511606992075, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.01027114392693288, y: 0.0}, {x: 0.010373444, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0011091516966379984, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004914005, y: 0.0}, {x: 0.015177066, y: 0.0}, {x: 0.00486618, y: 0.0}, {x: 0.005935631042770927, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.010563306583408944, y: 1.405256}, {x: 0.01174743, y: 0.0}, {x: 0.04831697120752659, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02782064506193021, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04359369330501393, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.13103386904457948, y: 1111.110965}, {x: 0.0060930528733311885, y: 0.0}, {x: 0.08232598898342042, y: 0.0}, {x: 0.054127151582998544, y: 360.22096}, {x: 0.16527237713716217, y: 940.76283}, {x: 0.0401107755272884, y: 0.0}, {x: 0.041077128418988834, y: 0.0}, {x: 0.013557809711795092, y: 0.0}, {x: 0.021061820718431736, y: 388.743118}, {x: 0.014089268022739576, y: 0.0}, {x: 0.009282698606127182, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004524189674520548, y: 0.0}, {x: 0.002310217605359318, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.008953808959475106, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006537484241581405, y: 0.0}, {x: 0.01897441920597518, y: 0.0}, {x: 0.002073283769218424, y: 0.45}, {x: 0.0, y: 0.0}, {x: 0.009342114893737803, y: 0.0}, {x: 0.0177586806678733, y: 0.0}, {x: 0.02239376402092955, y: 0.0}, {x: 0.0161761439316228, y: 5e-05}, {x: 0.00917344360912634, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.10495939595890612, y: 3939.66886}, {x: 0.030937489959360104, y: 0.0}, {x: 0.012770880244096922, y: 0.0}, {x: 0.011047459562064647, y: 0.0}, {x: 0.02320474781604953, y: 396.4304}, {x: 0.01854185654682542, y: 0.0}, {x: 0.012256470873446095, y: 0.0}, {x: 0.02036621530100158, y: 0.0}, {x: 0.08294701108724732, y: 0.0}, {x: 0.06200026408120236, y: 0.0}, {x: 0.005021096240087448, y: 0.0}, {x: 0.02547953787991869, y: 0.0}, {x: 0.005662731115157227, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.007315573503675296, y: 0.0}, {x: 0.0326145658128064, y: 0.0}, {x: 0.047428084368129814, y: 0.0}, {x: 0.003880759436112311, y: 0.0}, {x: 0.013784081463967373, y: 0.0}, {x: 0.02034349730302353, y: 0.0}, {x: 0.039388738008276636, y: 0.0}, {x: 0.019332446883149626, y: 0.0}, {x: 0.04447142271643541, y: 68.97}, {x: 0.19293470458124237, y: 0.0}, {x: 0.23495687139732585, y: 0.0}, {x: 0.05794651540544533, y: 0.0}, {x: 0.06641627272675799, y: 132.94799999999998}, {x: 0.046547296501121105, y: 57.339039}, {x: 0.046566311633463926, y: 0.0}, {x: 0.03436831986987188, y: 0.0}, {x: 0.02565940415305712, y: 0.0}, {x: 0.009295918980245321, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03159781908068887, y: 0.0117}, {x: 0.01921898282395814, y: 0.0}, {x: 0.0049555448489847715, y: 0.0}, {x: 0.011186487727253048, y: 0.0}, {x: 0.023488896798661698, y: 0.0}, {x: 0.046869134281923276, y: 0.0}, {x: 0.013956284259535257, y: 0.0}, {x: 0.032872348204917315, y: 0.0}, {x: 0.05442506030433603, y: 0.0}, {x: 0.13039499567032742, y: 0.0}, {x: 0.057443366, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02206235530011341, y: 0.0}, {x: 0.030428357846463173, y: 0.0}, {x: 0.008839616943860802, y: 0.0002}, {x: null, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04434519421213818, y: 0.0}, {x: 0.028102384453224532, y: 0.0}, {x: 0.02563644618202608, y: 0.0}, {x: 0.022002409854010023, y: 0.0}, {x: 0.013285772587716321, y: 0.0}, {x: 0.0024730847239138945, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.027393624101815204, y: 0.0}, {x: 0.004283551264465409, y: 0.0}, {x: 0.027603609341902154, y: 0.0}, {x: 0.09226579579172779, y: 0.0}, {x: 0.04714182278413341, y: 0.0}, {x: 0.015648909997591005, y: 0.0}, {x: 0.011477568726863256, y: 0.0}, {x: 0.11535266242254427, y: 0.0}, {x: 0.04115249962362506, y: 0.0}, {x: 0.06119182302005388, y: 0.0}, {x: 0.027253039686177715, y: 0.0}, {x: 0.02840192219996364, y: 0.0}, {x: 0.009011235318208164, y: 0.0}, {x: 0.015148456984382695, y: 0.0}, {x: 0.05880981157813146, y: 0.0}, {x: 0.02575411223839662, y: 0.0}, {x: 0.011259348449295775, y: 3617.0713}, {x: 0.010553417110817129, y: 0.0}, {x: 0.03895164713019016, y: 21.541675}, {x: 0.014039894782260502, y: 0.0}, {x: 0.0017231909731291533, y: 0.0}, {x: 0.0, y: 0.021042}, {x: 0.0039717360743925225, y: 0.0}, {x: 0.001785646170277693, y: 0.0}, {x: 0.0029433224337388837, y: 0.0}, {x: 0.0027818627980613895, y: 0.0}, {x: 0.11527824156377282, y: 0.0}, {x: 0.022000841749398273, y: 0.0}, {x: 0.014303341292447272, y: 0.0}, {x: 0.013482474696282085, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.023929269157045394, y: 0.0}, {x: 0.001981510211919006, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.016662963304749284, y: 0.0}, {x: 0.003465932737315011, y: 0.0}, {x: 0.008751111266540873, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.009801381761360708, y: 0.0}, {x: 0.007878704126139356, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.11563748397268915, y: 1244.3365}, {x: 0.26013115203819526, y: 0.0}, {x: 0.18727500083120094, y: 0.0}, {x: 0.013955568717803497, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0037908745944472406, y: 0.0}, {x: 0.005141264450899032, y: 0.0}, {x: 0.01119886966704851, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03729849847371731, y: 626.415468}, {x: 0.04198287313932729, y: 26.799356}, {x: 0.011400869255181904, y: 0.0}, {x: 0.028147297120313244, y: 0.0}, {x: 0.05639627348148148, y: 0.0}, {x: 0.04464476063014912, y: 0.0}, {x: 0.007627765, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.016676}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0017972000823892893, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0022553063308917037, y: 0.0}, {x: 0.009843294067691135, y: 0.0}, {x: 0.10777815999275808, y: 563.320881}, {x: 0.0, y: 0.0}, {x: 0.01748011079139427, y: 0.0}, {x: 0.042046843307224996, y: 58.2}, {x: 0.017309658133874955, y: 0.0}, {x: 0.022241111509462154, y: 0.0}, {x: 0.019555328477539248, y: 0.0}, {x: 0.014011625951830444, y: 0.0}, {x: 0.04928325913596892, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.11838571743503093, y: 0.0}, {x: 0.008080379453093811, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0032910312864606007, y: 0.0}, {x: 0.014221929036323437, y: 0.0}, {x: 0.010538568917600582, y: 0.0}, {x: 0.006556882509145448, y: 0.0}, {x: 0.0029564901209637113, y: 0.0}, {x: 0.03019576794169643, y: 0.0}, {x: 0.013132862742070895, y: 0.0}, {x: 0.015010866958796993, y: 0.0}, {x: 0.0019501013783982367, y: 0.0}, {x: 0.08245319825154453, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.005221781507496012, y: 19.984463095089623}, {x: 0.018807056014812654, y: 47.346225189474005}, {x: 0.1478680908743817, y: 728.3818650701519}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.005221781507496012, y: -12.48077517092517}, {x: 0.018807056014812654, y: 0.8232574009658862}, {x: 0.1478680908743817, y: 364.16175999933387}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.005221781507496012, y: 52.44970136110442}, {x: 0.018807056014812654, y: 93.86919297798212}, {x: 0.1478680908743817, y: 1092.60197014097}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LOWINCPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LOWINCPCT.html index 50f64c2c..ae545d19 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LOWINCPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LOWINCPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.27299113695170296, y: 0.0}, {x: 0.25243718798931475, y: 0.0}, {x: 0.2095238096628571, y: 0.0}, {x: 0.16967688223462984, y: 0.0}, {x: 0.20148819060532022, y: 1399.429818}, {x: 0.20886684447848947, y: 0.093729}, {x: 0.16659613215532498, y: 0.0}, {x: 0.1591444981867341, y: 0.0}, {x: 0.17684588079038188, y: 0.0}, {x: 0.2057784433496076, y: 0.0}, {x: 0.18432437442635954, y: 0.0}, {x: 0.1917377925633527, y: 0.0}, {x: 0.11902189100909048, y: 0.0}, {x: 0.17780130288348486, y: 0.0}, {x: 0.18329303374627012, y: 0.0}, {x: 0.20482619646047706, y: 0.0}, {x: 0.2963666967047163, y: 0.0}, {x: 0.19947420319848833, y: 0.0}, {x: 0.1731396128941158, y: 0.0}, {x: 0.16543778783297308, y: 0.175}, {x: 0.16915318051434994, y: 0.0}, {x: 0.16074381822336545, y: 0.0}, {x: 0.3473860239989251, y: 0.0}, {x: 0.3378480603932116, y: 0.0}, {x: 0.13228492134165898, y: 0.0}, {x: 0.3252936727887247, y: 0.0}, {x: 0.1359252561199518, y: 0.0}, {x: 0.17767768611199997, y: 0.0}, {x: 0.19140625, y: 0.0}, {x: 0.263908702, y: 0.0}, {x: 0.108739837, y: 0.0}, {x: 0.102564103, y: 0.0}, {x: 0.147704591, y: 0.0}, {x: 0.22351301107992566, y: 0.0}, {x: 0.27813504861093247, y: 0.0}, {x: 0.197781885, y: 0.0}, {x: 0.132408575, y: 0.0}, {x: 0.26016819580737444, y: 0.0}, {x: 0.13768197673150684, y: 0.0}, {x: 0.197867299, y: 0.0}, {x: 0.19158075581013745, y: 0.0}, {x: 0.243010753, y: 0.0}, {x: 0.211058264, y: 0.0}, {x: 0.179372197, y: 0.0}, {x: 0.150867824, y: 0.0}, {x: 0.15326975469209808, y: 0.0}, {x: 0.08899192757168439, y: 0.0}, {x: 0.1225092426017119, y: 0.0}, {x: 0.1297705992256876, y: 0.0}, {x: 0.13199308108704144, y: 0.0}, {x: 0.282740914986396, y: 33.039}, {x: 0.12498733167687118, y: 0.0}, {x: 0.13733073778628793, y: 0.0}, {x: 0.13606388648796622, y: 0.0}, {x: 0.11155759809201417, y: 0.0}, {x: 0.18269924548424876, y: 0.0}, {x: 0.2224880714045857, y: 0.0}, {x: 0.12225660839983049, y: 999.999999}, {x: 0.14431265298907164, y: 0.0}, {x: 0.40029346852487707, y: 2369.610135}, {x: 0.10313758589254034, y: 0.0}, {x: 0.12791391655514034, y: 0.0}, {x: 0.17068145083374886, y: 0.0}, {x: 0.4032812922509393, y: 1019.716757}, {x: 0.15103726979277082, y: 0.0}, {x: 0.19125475305807982, y: 40.416186}, {x: 0.20080325958859283, y: 0.0}, {x: 0.2699676663693086, y: 0.0}, {x: 0.22364689673864496, y: 0.0}, {x: 0.2174376324653816, y: 0.0}, {x: 0.10366018375, y: 0.0}, {x: 0.066869301, y: 0.0}, {x: 0.066570188, y: 0.0}, {x: 0.10526315799999998, y: 0.0}, {x: 0.1516169674090718, y: 0.0}, {x: 0.06984413049701929, y: 1.335464}, {x: 0.10054775203579369, y: 0.072}, {x: 0.293336106271621, y: 0.0}, {x: 0.3361081896138887, y: 176.850903}, {x: 0.1672001289309271, y: 0.0}, {x: 0.09996892965473048, y: 0.0}, {x: 0.1725015528308928, y: 0.0}, {x: 0.11734310426380846, y: 0.0}, {x: 0.048607718582193454, y: 0.0}, {x: 0.09929170831745789, y: 0.0}, {x: 0.0961108627097303, y: 0.0}, {x: 0.0773673467173392, y: 0.0}, {x: 0.179011864822488, y: 0.0}, {x: 0.055927164839836487, y: 0.0}, {x: 0.13397731980638722, y: 0.0}, {x: 0.2181795258659184, y: 1.346}, {x: 0.1872329873489385, y: 0.0}, {x: 0.1384709965808425, y: 0.0}, {x: 0.4724235007264843, y: 221.159543}, {x: 0.2281167114461557, y: 0.0}, {x: 0.14422046654410578, y: 57.7297}, {x: 0.08794556363245809, y: 0.0}, {x: 0.26832986140740234, y: 172.582673}, {x: 0.16409040223928156, y: 0.0}, {x: 0.07701498933355555, y: 0.0}, {x: 0.06425285659370826, y: 0.0}, {x: 0.08753444727384471, y: 0.0}, {x: 0.16989638955594122, y: 0.0}, {x: 0.14976768401784715, y: 0.0}, {x: 0.1278423820202948, y: 0.0}, {x: 0.09743747971401036, y: 0.0}, {x: 0.0824878762455395, y: 0.0}, {x: 0.284313726, y: 0.0}, {x: 0.188615123, y: 0.0}, {x: 0.202603743, y: 0.0}, {x: 0.293163384, y: 0.0}, {x: 0.168717048, y: 0.0}, {x: 0.271302645, y: 0.0}, {x: 0.2548928280492572, y: 0.0}, {x: 0.1961183159272163, y: 0.0}, {x: 0.196226415, y: 0.0}, {x: 0.265129683, y: 0.0}, {x: 0.271834061, y: 0.0}, {x: 0.3502216638585673, y: 0.0}, {x: 0.25950783, y: 0.0}, {x: 0.139261745, y: 0.0}, {x: 0.211753731, y: 0.0}, {x: 0.23093737127064162, y: 1.405256}, {x: 0.242771084, y: 0.0}, {x: 0.29766600735124077, y: 0.0}, {x: 0.150012357635167, y: 0.0}, {x: 0.31523934752962907, y: 0.0}, {x: 0.20087401824444445, y: 0.0}, {x: 0.131593559, y: 0.0}, {x: 0.18391475730919218, y: 0.0}, {x: 0.2200502454599136, y: 0.0}, {x: 0.4777565248941103, y: 1111.110965}, {x: 0.26216500295632944, y: 0.0}, {x: 0.18486560856023754, y: 0.0}, {x: 0.30841494916579615, y: 360.22096}, {x: 0.4753228200016372, y: 940.76283}, {x: 0.2656695957542919, y: 0.0}, {x: 0.20730710832127855, y: 0.0}, {x: 0.1585337295221696, y: 0.0}, {x: 0.1608362826541913, y: 388.743118}, {x: 0.06158640789131023, y: 0.0}, {x: 0.16683752007121935, y: 0.0}, {x: 0.09230780703486274, y: 0.0}, {x: 0.11471823414342465, y: 0.0}, {x: 0.1970411388948843, y: 0.0}, {x: 0.176139273, y: 0.0}, {x: 0.1960632962030104, y: 0.0}, {x: 0.1998379690764245, y: 0.0}, {x: 0.294639474211483, y: 0.0}, {x: 0.31247244125561685, y: 0.0}, {x: 0.20989992329417428, y: 0.45}, {x: 0.13586164929165304, y: 0.0}, {x: 0.14247676015628882, y: 0.0}, {x: 0.12096530884253394, y: 0.0}, {x: 0.25783188061802653, y: 0.0}, {x: 0.21617414246587754, y: 5e-05}, {x: 0.10150690587966872, y: 0.0}, {x: 0.2884353742557823, y: 0.0}, {x: 0.098654709, y: 0.0}, {x: 0.298219585, y: 0.0}, {x: 0.25948718, y: 0.0}, {x: 0.156905278, y: 0.0}, {x: 0.12832860825305736, y: 0.0}, {x: 0.12365270231638233, y: 0.0}, {x: 0.34673498957553583, y: 3939.66886}, {x: 0.09994344346537934, y: 0.0}, {x: 0.15384319048371248, y: 0.0}, {x: 0.08710332492456586, y: 0.0}, {x: 0.1008064250496964, y: 396.4304}, {x: 0.08771242595091847, y: 0.0}, {x: 0.07279396787813328, y: 0.0}, {x: 0.08975997195044808, y: 0.0}, {x: 0.2327239113289238, y: 0.0}, {x: 0.13996864357484995, y: 0.0}, {x: 0.11238594848464672, y: 0.0}, {x: 0.07722384171119502, y: 0.0}, {x: 0.12683826871399193, y: 0.0}, {x: 0.04969841533392698, y: 0.0}, {x: 0.08589690919919646, y: 0.0}, {x: 0.08440847300098046, y: 0.0}, {x: 0.1416893575578691, y: 0.0}, {x: 0.07848311498764579, y: 0.0}, {x: 0.12003189710750924, y: 0.0}, {x: 0.11250104445269098, y: 0.0}, {x: 0.12146322663045456, y: 0.0}, {x: 0.07908449461954427, y: 0.0}, {x: 0.18302933148776412, y: 68.97}, {x: 0.3203794253595913, y: 0.0}, {x: 0.3049432114731402, y: 0.0}, {x: 0.19910538052319265, y: 0.0}, {x: 0.22321962706557505, y: 132.94799999999998}, {x: 0.10588727144161017, y: 57.339039}, {x: 0.09438464304305884, y: 0.0}, {x: 0.05593369737141185, y: 0.0}, {x: 0.07395985420414321, y: 0.0}, {x: 0.058869252886378315, y: 0.0}, {x: 0.05674906983777565, y: 0.0}, {x: 0.06623712909682664, y: 0.0117}, {x: 0.10887306593552609, y: 0.0}, {x: 0.03712112270108925, y: 0.0}, {x: 0.056050940006493966, y: 0.0}, {x: 0.11600418219828901, y: 0.0}, {x: 0.21506941251442124, y: 0.0}, {x: 0.0912853786588141, y: 0.0}, {x: 0.13143456007082682, y: 0.0}, {x: 0.10387283348211648, y: 0.0}, {x: 0.22486987873836453, y: 0.0}, {x: 0.080193957, y: 0.0}, {x: 0.03608715374784385, y: 0.0}, {x: 0.08223008523128722, y: 0.0}, {x: 0.0999817215821605, y: 0.0}, {x: 0.1954196071749836, y: 0.0002}, {x: null, y: 0.0}, {x: 0.20008314333616634, y: 0.0}, {x: 0.15801071788718438, y: 0.0}, {x: 0.14087111440913444, y: 0.0}, {x: 0.05865493245251755, y: 0.0}, {x: 0.06351693746014342, y: 0.0}, {x: 0.02364470752969121, y: 0.0}, {x: 0.07473460471279844, y: 0.0}, {x: 0.14814725226561878, y: 0.0}, {x: 0.02768007445176082, y: 0.0}, {x: 0.19698510255493382, y: 0.0}, {x: 0.11938882755490565, y: 0.0}, {x: 0.06345309811770199, y: 0.0}, {x: 0.12884139818108034, y: 0.0}, {x: 0.03306355023241984, y: 0.0}, {x: 0.0742672349127409, y: 0.0}, {x: 0.12308948151428672, y: 0.0}, {x: 0.24482712232267015, y: 0.0}, {x: 0.12638999316454871, y: 0.0}, {x: 0.23676957330700815, y: 0.0}, {x: 0.14052797294684416, y: 0.0}, {x: 0.17759435843310808, y: 0.0}, {x: 0.08228521786817918, y: 0.0}, {x: 0.0653447346516356, y: 0.0}, {x: 0.13609367803255476, y: 0.0}, {x: 0.11243618229978904, y: 0.0}, {x: 0.11624743884635083, y: 3617.0713}, {x: 0.07377815666588729, y: 0.0}, {x: 0.18446495239034547, y: 21.541675}, {x: 0.09664054018139923, y: 0.0}, {x: 0.05874165804112491, y: 0.0}, {x: 0.11780230618104134, y: 0.021042}, {x: 0.07903555818915887, y: 0.0}, {x: 0.0805549164244736, y: 0.0}, {x: 0.08764630765802826, y: 0.0}, {x: 0.09250448189484507, y: 0.0}, {x: 0.30815025439350857, y: 0.0}, {x: 0.16285775372278072, y: 0.0}, {x: 0.14028667027972191, y: 0.0}, {x: 0.1180841879263694, y: 0.0}, {x: 0.07464877872898783, y: 0.0}, {x: 0.09864828140566781, y: 0.0}, {x: 0.13466738768482514, y: 0.0}, {x: 0.09448106493369524, y: 0.0}, {x: 0.15319340418138985, y: 0.0}, {x: 0.060741919796687804, y: 0.0}, {x: 0.12728577760545376, y: 0.0}, {x: 0.157733015, y: 0.0}, {x: 0.2385110123431836, y: 0.0}, {x: 0.24373477196341092, y: 0.0}, {x: 0.07651321397314578, y: 0.0}, {x: 0.1300490323111985, y: 0.0}, {x: 0.3174299949349316, y: 1244.3365}, {x: 0.4318491023054641, y: 0.0}, {x: 0.3836653314056802, y: 0.0}, {x: 0.151076381228392, y: 0.0}, {x: 0.11365019844612767, y: 0.0}, {x: 0.2758526586666667, y: 0.0}, {x: 0.12024460569824805, y: 0.0}, {x: 0.30648434793350926, y: 0.0}, {x: 0.10776200587027492, y: 0.0}, {x: 0.22013719790007147, y: 626.415468}, {x: 0.3163349109589605, y: 26.799356}, {x: 0.14963687161641007, y: 0.0}, {x: 0.10603472061165164, y: 0.0}, {x: 0.09219291237037036, y: 0.0}, {x: 0.23833388128451208, y: 0.0}, {x: 0.142641737, y: 0.0}, {x: 0.09186077182661123, y: 0.0}, {x: 0.11755401239965278, y: 0.0}, {x: 0.07652769872415761, y: 0.0}, {x: 0.115360888, y: 0.0}, {x: 0.19886664916597363, y: 0.016676}, {x: 0.2510933140770365, y: 0.0}, {x: 0.199237369, y: 0.0}, {x: 0.28307736525170424, y: 0.0}, {x: 0.15300508668427248, y: 0.0}, {x: 0.18075606006862824, y: 0.0}, {x: 0.05067640432047952, y: 0.0}, {x: 0.09223585323170048, y: 0.0}, {x: 0.17139813273533147, y: 0.0}, {x: 0.34540440048303395, y: 563.320881}, {x: 0.15334006301254852, y: 0.0}, {x: 0.15784006830643052, y: 0.0}, {x: 0.1295649625056773, y: 58.2}, {x: 0.13744229792894147, y: 0.0}, {x: 0.08226002218849603, y: 0.0}, {x: 0.10449106469875041, y: 0.0}, {x: 0.08510305414865126, y: 0.0}, {x: 0.1532454043136426, y: 0.0}, {x: 0.062080914760455796, y: 0.0}, {x: 0.2842732354320165, y: 0.0}, {x: 0.10665144306636726, y: 0.0}, {x: 0.08842705196109656, y: 0.0}, {x: 0.14203706918502396, y: 0.0}, {x: 0.17826504561844597, y: 0.0}, {x: 0.09965524991203742, y: 0.0}, {x: 0.14069767914881476, y: 0.0}, {x: 0.10641073868079577, y: 0.0}, {x: 0.11953057968294643, y: 0.0}, {x: 0.23415369693183635, y: 0.0}, {x: 0.316456044682406, y: 0.0}, {x: 0.11873791795444526, y: 0.0}, {x: 0.40017281298758717, y: 0.0}, {x: 0.175498576, y: 0.0}, {x: 0.18689956331819504, y: 0.0}, {x: 0.1761501514878976, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.06345647144329823, y: 17.634192522110922}, {x: 0.12685416308724437, y: 48.657046035079105}, {x: 0.17989982959217435, y: 604.5015071881513}, {x: 0.34355804663043776, y: 636.2212734474932}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.06345647144329823, y: -9.206253620931754}, {x: 0.12685416308724437, y: -5.854010128698029}, {x: 0.17989982959217435, y: -136.00306454647853}, {x: 0.34355804663043776, y: 306.3681397746628}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.06345647144329823, y: 44.4746386651536}, {x: 0.12685416308724437, y: 103.16810219885625}, {x: 0.17989982959217435, y: 1345.0060789227812}, {x: 0.34355804663043776, y: 966.0744071203237}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.27299113695170296, y: 0.0}, {x: 0.25243718798931475, y: 0.0}, {x: 0.2095238096628571, y: 0.0}, {x: 0.16967688223462984, y: 0.0}, {x: 0.20148819060532022, y: 1399.429818}, {x: 0.20886684447848947, y: 0.093729}, {x: 0.16659613215532498, y: 0.0}, {x: 0.1591444981867341, y: 0.0}, {x: 0.17684588079038188, y: 0.0}, {x: 0.2057784433496076, y: 0.0}, {x: 0.18432437442635954, y: 0.0}, {x: 0.1917377925633527, y: 0.0}, {x: 0.11902189100909048, y: 0.0}, {x: 0.17780130288348486, y: 0.0}, {x: 0.18329303374627012, y: 0.0}, {x: 0.20482619646047706, y: 0.0}, {x: 0.2963666967047163, y: 0.0}, {x: 0.19947420319848833, y: 0.0}, {x: 0.1731396128941158, y: 0.0}, {x: 0.16543778783297308, y: 0.175}, {x: 0.16915318051434994, y: 0.0}, {x: 0.16074381822336545, y: 0.0}, {x: 0.3473860239989251, y: 0.0}, {x: 0.3378480603932116, y: 0.0}, {x: 0.13228492134165898, y: 0.0}, {x: 0.3252936727887247, y: 0.0}, {x: 0.1359252561199518, y: 0.0}, {x: 0.17767768611199997, y: 0.0}, {x: 0.19140625, y: 0.0}, {x: 0.263908702, y: 0.0}, {x: 0.108739837, y: 0.0}, {x: 0.102564103, y: 0.0}, {x: 0.147704591, y: 0.0}, {x: 0.22351301107992566, y: 0.0}, {x: 0.27813504861093247, y: 0.0}, {x: 0.197781885, y: 0.0}, {x: 0.132408575, y: 0.0}, {x: 0.26016819580737444, y: 0.0}, {x: 0.13768197673150684, y: 0.0}, {x: 0.197867299, y: 0.0}, {x: 0.19158075581013745, y: 0.0}, {x: 0.243010753, y: 0.0}, {x: 0.211058264, y: 0.0}, {x: 0.179372197, y: 0.0}, {x: 0.150867824, y: 0.0}, {x: 0.15326975469209808, y: 0.0}, {x: 0.08899192757168439, y: 0.0}, {x: 0.1225092426017119, y: 0.0}, {x: 0.1297705992256876, y: 0.0}, {x: 0.13199308108704144, y: 0.0}, {x: 0.282740914986396, y: 33.039}, {x: 0.12498733167687118, y: 0.0}, {x: 0.13733073778628793, y: 0.0}, {x: 0.13606388648796622, y: 0.0}, {x: 0.11155759809201417, y: 0.0}, {x: 0.18269924548424876, y: 0.0}, {x: 0.2224880714045857, y: 0.0}, {x: 0.12225660839983049, y: 999.999999}, {x: 0.14431265298907164, y: 0.0}, {x: 0.40029346852487707, y: 2369.610135}, {x: 0.10313758589254034, y: 0.0}, {x: 0.12791391655514034, y: 0.0}, {x: 0.17068145083374886, y: 0.0}, {x: 0.4032812922509393, y: 1019.716757}, {x: 0.15103726979277082, y: 0.0}, {x: 0.19125475305807982, y: 40.416186}, {x: 0.20080325958859283, y: 0.0}, {x: 0.2699676663693086, y: 0.0}, {x: 0.22364689673864496, y: 0.0}, {x: 0.2174376324653816, y: 0.0}, {x: 0.10366018375, y: 0.0}, {x: 0.066869301, y: 0.0}, {x: 0.066570188, y: 0.0}, {x: 0.10526315799999998, y: 0.0}, {x: 0.1516169674090718, y: 0.0}, {x: 0.06984413049701929, y: 1.335464}, {x: 0.10054775203579369, y: 0.072}, {x: 0.293336106271621, y: 0.0}, {x: 0.3361081896138887, y: 176.850903}, {x: 0.1672001289309271, y: 0.0}, {x: 0.09996892965473048, y: 0.0}, {x: 0.1725015528308928, y: 0.0}, {x: 0.11734310426380846, y: 0.0}, {x: 0.048607718582193454, y: 0.0}, {x: 0.09929170831745789, y: 0.0}, {x: 0.0961108627097303, y: 0.0}, {x: 0.0773673467173392, y: 0.0}, {x: 0.179011864822488, y: 0.0}, {x: 0.055927164839836487, y: 0.0}, {x: 0.13397731980638722, y: 0.0}, {x: 0.2181795258659184, y: 1.346}, {x: 0.1872329873489385, y: 0.0}, {x: 0.1384709965808425, y: 0.0}, {x: 0.4724235007264843, y: 221.159543}, {x: 0.2281167114461557, y: 0.0}, {x: 0.14422046654410578, y: 57.7297}, {x: 0.08794556363245809, y: 0.0}, {x: 0.26832986140740234, y: 172.582673}, {x: 0.16409040223928156, y: 0.0}, {x: 0.07701498933355555, y: 0.0}, {x: 0.06425285659370826, y: 0.0}, {x: 0.08753444727384471, y: 0.0}, {x: 0.16989638955594122, y: 0.0}, {x: 0.14976768401784715, y: 0.0}, {x: 0.1278423820202948, y: 0.0}, {x: 0.09743747971401036, y: 0.0}, {x: 0.0824878762455395, y: 0.0}, {x: 0.284313726, y: 0.0}, {x: 0.188615123, y: 0.0}, {x: 0.202603743, y: 0.0}, {x: 0.293163384, y: 0.0}, {x: 0.168717048, y: 0.0}, {x: 0.271302645, y: 0.0}, {x: 0.2548928280492572, y: 0.0}, {x: 0.1961183159272163, y: 0.0}, {x: 0.196226415, y: 0.0}, {x: 0.265129683, y: 0.0}, {x: 0.271834061, y: 0.0}, {x: 0.3502216638585673, y: 0.0}, {x: 0.25950783, y: 0.0}, {x: 0.139261745, y: 0.0}, {x: 0.211753731, y: 0.0}, {x: 0.23093737127064162, y: 1.405256}, {x: 0.242771084, y: 0.0}, {x: 0.29766600735124077, y: 0.0}, {x: 0.150012357635167, y: 0.0}, {x: 0.31523934752962907, y: 0.0}, {x: 0.20087401824444445, y: 0.0}, {x: 0.131593559, y: 0.0}, {x: 0.18391475730919218, y: 0.0}, {x: 0.2200502454599136, y: 0.0}, {x: 0.4777565248941103, y: 1111.110965}, {x: 0.26216500295632944, y: 0.0}, {x: 0.18486560856023754, y: 0.0}, {x: 0.30841494916579615, y: 360.22096}, {x: 0.4753228200016372, y: 940.76283}, {x: 0.2656695957542919, y: 0.0}, {x: 0.20730710832127855, y: 0.0}, {x: 0.1585337295221696, y: 0.0}, {x: 0.1608362826541913, y: 388.743118}, {x: 0.06158640789131023, y: 0.0}, {x: 0.16683752007121935, y: 0.0}, {x: 0.09230780703486274, y: 0.0}, {x: 0.11471823414342465, y: 0.0}, {x: 0.1970411388948843, y: 0.0}, {x: 0.176139273, y: 0.0}, {x: 0.1960632962030104, y: 0.0}, {x: 0.1998379690764245, y: 0.0}, {x: 0.294639474211483, y: 0.0}, {x: 0.31247244125561685, y: 0.0}, {x: 0.20989992329417428, y: 0.45}, {x: 0.13586164929165304, y: 0.0}, {x: 0.14247676015628882, y: 0.0}, {x: 0.12096530884253394, y: 0.0}, {x: 0.25783188061802653, y: 0.0}, {x: 0.21617414246587754, y: 5e-05}, {x: 0.10150690587966872, y: 0.0}, {x: 0.2884353742557823, y: 0.0}, {x: 0.098654709, y: 0.0}, {x: 0.298219585, y: 0.0}, {x: 0.25948718, y: 0.0}, {x: 0.156905278, y: 0.0}, {x: 0.12832860825305736, y: 0.0}, {x: 0.12365270231638233, y: 0.0}, {x: 0.34673498957553583, y: 3939.66886}, {x: 0.09994344346537934, y: 0.0}, {x: 0.15384319048371248, y: 0.0}, {x: 0.08710332492456586, y: 0.0}, {x: 0.1008064250496964, y: 396.4304}, {x: 0.08771242595091847, y: 0.0}, {x: 0.07279396787813328, y: 0.0}, {x: 0.08975997195044808, y: 0.0}, {x: 0.2327239113289238, y: 0.0}, {x: 0.13996864357484995, y: 0.0}, {x: 0.11238594848464672, y: 0.0}, {x: 0.07722384171119502, y: 0.0}, {x: 0.12683826871399193, y: 0.0}, {x: 0.04969841533392698, y: 0.0}, {x: 0.08589690919919646, y: 0.0}, {x: 0.08440847300098046, y: 0.0}, {x: 0.1416893575578691, y: 0.0}, {x: 0.07848311498764579, y: 0.0}, {x: 0.12003189710750924, y: 0.0}, {x: 0.11250104445269098, y: 0.0}, {x: 0.12146322663045456, y: 0.0}, {x: 0.07908449461954427, y: 0.0}, {x: 0.18302933148776412, y: 68.97}, {x: 0.3203794253595913, y: 0.0}, {x: 0.3049432114731402, y: 0.0}, {x: 0.19910538052319265, y: 0.0}, {x: 0.22321962706557505, y: 132.94799999999998}, {x: 0.10588727144161017, y: 57.339039}, {x: 0.09438464304305884, y: 0.0}, {x: 0.05593369737141185, y: 0.0}, {x: 0.07395985420414321, y: 0.0}, {x: 0.058869252886378315, y: 0.0}, {x: 0.05674906983777565, y: 0.0}, {x: 0.06623712909682664, y: 0.0117}, {x: 0.10887306593552609, y: 0.0}, {x: 0.03712112270108925, y: 0.0}, {x: 0.056050940006493966, y: 0.0}, {x: 0.11600418219828901, y: 0.0}, {x: 0.21506941251442124, y: 0.0}, {x: 0.0912853786588141, y: 0.0}, {x: 0.13143456007082682, y: 0.0}, {x: 0.10387283348211648, y: 0.0}, {x: 0.22486987873836453, y: 0.0}, {x: 0.080193957, y: 0.0}, {x: 0.03608715374784385, y: 0.0}, {x: 0.08223008523128722, y: 0.0}, {x: 0.0999817215821605, y: 0.0}, {x: 0.1954196071749836, y: 0.0002}, {x: null, y: 0.0}, {x: 0.20008314333616634, y: 0.0}, {x: 0.15801071788718438, y: 0.0}, {x: 0.14087111440913444, y: 0.0}, {x: 0.05865493245251755, y: 0.0}, {x: 0.06351693746014342, y: 0.0}, {x: 0.02364470752969121, y: 0.0}, {x: 0.07473460471279844, y: 0.0}, {x: 0.14814725226561878, y: 0.0}, {x: 0.02768007445176082, y: 0.0}, {x: 0.19698510255493382, y: 0.0}, {x: 0.11938882755490565, y: 0.0}, {x: 0.06345309811770199, y: 0.0}, {x: 0.12884139818108034, y: 0.0}, {x: 0.03306355023241984, y: 0.0}, {x: 0.0742672349127409, y: 0.0}, {x: 0.12308948151428672, y: 0.0}, {x: 0.24482712232267015, y: 0.0}, {x: 0.12638999316454871, y: 0.0}, {x: 0.23676957330700815, y: 0.0}, {x: 0.14052797294684416, y: 0.0}, {x: 0.17759435843310808, y: 0.0}, {x: 0.08228521786817918, y: 0.0}, {x: 0.0653447346516356, y: 0.0}, {x: 0.13609367803255476, y: 0.0}, {x: 0.11243618229978904, y: 0.0}, {x: 0.11624743884635083, y: 3617.0713}, {x: 0.07377815666588729, y: 0.0}, {x: 0.18446495239034547, y: 21.541675}, {x: 0.09664054018139923, y: 0.0}, {x: 0.05874165804112491, y: 0.0}, {x: 0.11780230618104134, y: 0.021042}, {x: 0.07903555818915887, y: 0.0}, {x: 0.0805549164244736, y: 0.0}, {x: 0.08764630765802826, y: 0.0}, {x: 0.09250448189484507, y: 0.0}, {x: 0.30815025439350857, y: 0.0}, {x: 0.16285775372278072, y: 0.0}, {x: 0.14028667027972191, y: 0.0}, {x: 0.1180841879263694, y: 0.0}, {x: 0.07464877872898783, y: 0.0}, {x: 0.09864828140566781, y: 0.0}, {x: 0.13466738768482514, y: 0.0}, {x: 0.09448106493369524, y: 0.0}, {x: 0.15319340418138985, y: 0.0}, {x: 0.060741919796687804, y: 0.0}, {x: 0.12728577760545376, y: 0.0}, {x: 0.157733015, y: 0.0}, {x: 0.2385110123431836, y: 0.0}, {x: 0.24373477196341092, y: 0.0}, {x: 0.07651321397314578, y: 0.0}, {x: 0.1300490323111985, y: 0.0}, {x: 0.3174299949349316, y: 1244.3365}, {x: 0.4318491023054641, y: 0.0}, {x: 0.3836653314056802, y: 0.0}, {x: 0.151076381228392, y: 0.0}, {x: 0.11365019844612767, y: 0.0}, {x: 0.2758526586666667, y: 0.0}, {x: 0.12024460569824805, y: 0.0}, {x: 0.30648434793350926, y: 0.0}, {x: 0.10776200587027492, y: 0.0}, {x: 0.22013719790007147, y: 626.415468}, {x: 0.3163349109589605, y: 26.799356}, {x: 0.14963687161641007, y: 0.0}, {x: 0.10603472061165164, y: 0.0}, {x: 0.09219291237037036, y: 0.0}, {x: 0.23833388128451208, y: 0.0}, {x: 0.142641737, y: 0.0}, {x: 0.09186077182661123, y: 0.0}, {x: 0.11755401239965278, y: 0.0}, {x: 0.07652769872415761, y: 0.0}, {x: 0.115360888, y: 0.0}, {x: 0.19886664916597363, y: 0.016676}, {x: 0.2510933140770365, y: 0.0}, {x: 0.199237369, y: 0.0}, {x: 0.28307736525170424, y: 0.0}, {x: 0.15300508668427248, y: 0.0}, {x: 0.18075606006862824, y: 0.0}, {x: 0.05067640432047952, y: 0.0}, {x: 0.09223585323170048, y: 0.0}, {x: 0.17139813273533147, y: 0.0}, {x: 0.34540440048303395, y: 563.320881}, {x: 0.15334006301254852, y: 0.0}, {x: 0.15784006830643052, y: 0.0}, {x: 0.1295649625056773, y: 58.2}, {x: 0.13744229792894147, y: 0.0}, {x: 0.08226002218849603, y: 0.0}, {x: 0.10449106469875041, y: 0.0}, {x: 0.08510305414865126, y: 0.0}, {x: 0.1532454043136426, y: 0.0}, {x: 0.062080914760455796, y: 0.0}, {x: 0.2842732354320165, y: 0.0}, {x: 0.10665144306636726, y: 0.0}, {x: 0.08842705196109656, y: 0.0}, {x: 0.14203706918502396, y: 0.0}, {x: 0.17826504561844597, y: 0.0}, {x: 0.09965524991203742, y: 0.0}, {x: 0.14069767914881476, y: 0.0}, {x: 0.10641073868079577, y: 0.0}, {x: 0.11953057968294643, y: 0.0}, {x: 0.23415369693183635, y: 0.0}, {x: 0.316456044682406, y: 0.0}, {x: 0.11873791795444526, y: 0.0}, {x: 0.40017281298758717, y: 0.0}, {x: 0.175498576, y: 0.0}, {x: 0.18689956331819504, y: 0.0}, {x: 0.1761501514878976, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.06345647144329823, y: 16.690080617490356}, {x: 0.12685416308724437, y: 48.56420958283045}, {x: 0.17989982959217435, y: 585.407875521177}, {x: 0.34355804663043776, y: 640.5376970890844}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.06345647144329823, y: -10.726859480542423}, {x: 0.12685416308724437, y: -4.887838850731505}, {x: 0.17989982959217435, y: -165.06951807871303}, {x: 0.34355804663043776, y: 316.02330427329775}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.06345647144329823, y: 44.107020715523134}, {x: 0.12685416308724437, y: 102.01625801639241}, {x: 0.17989982959217435, y: 1335.8852691210668}, {x: 0.34355804663043776, y: 965.0520899048711}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_MINORPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_MINORPCT.html index 06f95485..1a40873f 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_MINORPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_MINORPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.14600781690089334, y: 0.0}, {x: 0.14866434363995357, y: 0.0}, {x: 0.0006349206717460317, y: 0.0}, {x: 0.09096612294562945, y: 0.0}, {x: 0.2872972650912279, y: 1399.429818}, {x: 0.027405990992033145, y: 0.093729}, {x: 0.04897772339273727, y: 0.0}, {x: 0.05417233998297996, y: 0.0}, {x: 0.06144496965766373, y: 0.0}, {x: 0.10792416143114107, y: 0.0}, {x: 0.16033064787118162, y: 0.0}, {x: 0.21148149690948728, y: 0.0}, {x: 0.0887425679054592, y: 0.0}, {x: 0.12767025507061186, y: 0.0}, {x: 0.10515788439964587, y: 0.0}, {x: 0.16910091729115598, y: 0.0}, {x: 0.1930280245735703, y: 0.0}, {x: 0.011501807369043706, y: 0.0}, {x: 0.05427942113813719, y: 0.0}, {x: 0.08567498528571428, y: 0.175}, {x: 0.09145919788813969, y: 0.0}, {x: 0.187288356407528, y: 0.0}, {x: 0.15187346427257367, y: 0.0}, {x: 0.057345913484867055, y: 0.0}, {x: 0.07061362944064138, y: 0.0}, {x: 0.12370005494198139, y: 0.0}, {x: 0.09132007242646173, y: 0.0}, {x: 0.07542857172914286, y: 0.0}, {x: 0.025542784, y: 0.0}, {x: 0.072033898, y: 0.0}, {x: 0.162601626, y: 0.0}, {x: 0.049731183, y: 0.0}, {x: 0.111776447, y: 0.0}, {x: 0.09758364347769516, y: 0.0}, {x: 0.0525187566323687, y: 0.0}, {x: 0.075785582, y: 0.0}, {x: 0.022698613, y: 0.0}, {x: 0.10743801645708836, y: 0.0}, {x: 0.036986301345205475, y: 0.0}, {x: 0.059933407, y: 0.0}, {x: 0.10910652919072165, y: 0.0}, {x: 0.062365591, y: 0.0}, {x: 0.103448276, y: 0.0}, {x: 0.049327354, y: 0.0}, {x: 0.116154873, y: 0.0}, {x: 0.061307901923705714, y: 0.0}, {x: 0.18194842399544617, y: 0.0}, {x: 0.1575498195141991, y: 0.0}, {x: 0.11401141677389726, y: 0.0}, {x: 0.08595615365205123, y: 0.0}, {x: 0.24673391142265602, y: 33.039}, {x: 0.07584655766774959, y: 0.0}, {x: 0.03673408686927424, y: 0.0}, {x: 0.04869809984306826, y: 0.0}, {x: 0.06527184303875055, y: 0.0}, {x: 0.22348232161922763, y: 0.0}, {x: 0.18540906717840022, y: 0.0}, {x: 0.06969163553738836, y: 999.999999}, {x: 0.05370524576623647, y: 0.0}, {x: 0.2807476728002667, y: 2369.610135}, {x: 0.06310891360644177, y: 0.0}, {x: 0.0700884686209579, y: 0.0}, {x: 0.03719984268219394, y: 0.0}, {x: 0.42051853165363917, y: 1019.716757}, {x: 0.13253480327743625, y: 0.0}, {x: 0.07794676815941064, y: 40.416186}, {x: 0.07550257135289076, y: 0.0}, {x: 0.2017284992976391, y: 0.0}, {x: 0.16616199835862983, y: 0.0}, {x: 0.18036978767899295, y: 0.0}, {x: 0.14885752700000002, y: 0.0}, {x: 0.040358744, y: 0.0}, {x: 0.445730825, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.06215875692776144, y: 0.0}, {x: 0.14272355328147285, y: 1.335464}, {x: 0.0847117522847226, y: 0.072}, {x: 0.29035350802185456, y: 0.0}, {x: 0.6164372345500128, y: 176.850903}, {x: 0.18195329081429581, y: 0.0}, {x: 0.11752369098539692, y: 0.0}, {x: 0.20049721349991803, y: 0.0}, {x: 0.12439008525255352, y: 0.0}, {x: 0.07022471931924767, y: 0.0}, {x: 0.09509954082174578, y: 0.0}, {x: 0.057964535843093426, y: 0.0}, {x: 0.10687175389752297, y: 0.0}, {x: 0.14637230624305814, y: 0.0}, {x: 0.08602749901337792, y: 0.0}, {x: 0.05189620768234959, y: 0.0}, {x: 0.11095627280019586, y: 1.346}, {x: 0.014153511031573217, y: 0.0}, {x: 0.0985841637399056, y: 0.0}, {x: 0.8686037358248168, y: 221.159543}, {x: 0.43357281788228874, y: 0.0}, {x: 0.19869524064269933, y: 57.7297}, {x: 0.2924537138944394, y: 0.0}, {x: 0.33892752288494826, y: 172.582673}, {x: 0.0843955194165701, y: 0.0}, {x: 0.12399999983066666, y: 0.0}, {x: 0.05950437740762724, y: 0.0}, {x: 0.057258440809709044, y: 0.0}, {x: 0.09487446479665625, y: 0.0}, {x: 0.1593232943439301, y: 0.0}, {x: 0.07362417591052514, y: 0.0}, {x: 0.06404744248687917, y: 0.0}, {x: 0.034409515502124045, y: 0.0}, {x: 0.096975089, y: 0.0}, {x: 0.08185654, y: 0.0}, {x: 0.046116505, y: 0.0}, {x: 0.105202312, y: 0.0}, {x: 0.041593439, y: 0.0}, {x: 0.037073171, y: 0.0}, {x: 0.06059421454104769, y: 0.0}, {x: 0.10244912071714384, y: 0.0}, {x: 0.047932331, y: 0.0}, {x: 0.097491039, y: 0.0}, {x: 0.167030568, y: 0.0}, {x: 0.07583311466452373, y: 0.0}, {x: 0.080824972, y: 0.0}, {x: 0.131991052, y: 0.0}, {x: 0.212686567, y: 0.0}, {x: 0.10537913171872974, y: 1.405256}, {x: 0.062048193, y: 0.0}, {x: 0.19580038190291793, y: 0.0}, {x: 0.09214145383045187, y: 0.0}, {x: 0.13902860734509587, y: 0.0}, {x: 0.09005847968888889, y: 0.0}, {x: 0.029233315, y: 0.0}, {x: 0.10167130911838439, y: 0.0}, {x: 0.11569851188238119, y: 0.0}, {x: 0.7186760593456725, y: 1111.110965}, {x: 0.17291298054165996, y: 0.0}, {x: 0.14945368162707837, y: 0.0}, {x: 0.30016435352136595, y: 360.22096}, {x: 0.5803794179719596, y: 940.76283}, {x: 0.2130594497696229, y: 0.0}, {x: 0.16727282034117918, y: 0.0}, {x: 0.08103745175355145, y: 0.0}, {x: 0.11423687760430169, y: 388.743118}, {x: 0.149228478813752, y: 0.0}, {x: 0.1370682289116929, y: 0.0}, {x: 0.09897816057383291, y: 0.0}, {x: 0.11150684951143837, y: 0.0}, {x: 0.054567600544579785, y: 0.0}, {x: 0.065130261, y: 0.0}, {x: 0.07796217717985333, y: 0.0}, {x: 0.1863354034069673, y: 0.0}, {x: 0.1004271382473428, y: 0.0}, {x: 0.3375414572358511, y: 0.0}, {x: 0.12983469738356604, y: 0.45}, {x: 0.052373158872340425, y: 0.0}, {x: 0.1841405003447756, y: 0.0}, {x: 0.11432880819788838, y: 0.0}, {x: 0.17817608687563227, y: 0.0}, {x: 0.10745933069587356, y: 5e-05}, {x: 0.10782721663478403, y: 0.0}, {x: 0.06213151891020409, y: 0.0}, {x: 0.058710913, y: 0.0}, {x: 0.10798816600000001, y: 0.0}, {x: 0.042051282, y: 0.0}, {x: 0.051079137, y: 0.0}, {x: 0.06083411725776105, y: 0.0}, {x: 0.11865704293558618, y: 0.0}, {x: 0.5215631929184774, y: 3939.66886}, {x: 0.1949583907657752, y: 0.0}, {x: 0.16676968722904564, y: 0.0}, {x: 0.11276602586213207, y: 0.0}, {x: 0.20354804139902372, y: 396.4304}, {x: 0.18546767184958224, y: 0.0}, {x: 0.28029345844854286, y: 0.0}, {x: 0.2604111753173432, y: 0.0}, {x: 0.3434155765964254, y: 0.0}, {x: 0.17251446184635347, y: 0.0}, {x: 0.11368379194812679, y: 0.0}, {x: 0.10251197911078845, y: 0.0}, {x: 0.11918430310050553, y: 0.0}, {x: 0.0647076286224399, y: 0.0}, {x: 0.1309866229984477, y: 0.0}, {x: 0.23531186377773586, y: 0.0}, {x: 0.20318264247545803, y: 0.0}, {x: 0.13032397413952485, y: 0.0}, {x: 0.11343760513382946, y: 0.0}, {x: 0.19571899627843292, y: 0.0}, {x: 0.15461281798704338, y: 0.0}, {x: 0.21877316999861599, y: 0.0}, {x: 0.314138058340499, y: 68.97}, {x: 0.5607041684087414, y: 0.0}, {x: 0.6133895974584894, y: 0.0}, {x: 0.28997068254344216, y: 0.0}, {x: 0.39829257899680814, y: 132.94799999999998}, {x: 0.26764092971080744, y: 57.339039}, {x: 0.274800413969249, y: 0.0}, {x: 0.38545644956107544, y: 0.0}, {x: 0.24215607405088493, y: 0.0}, {x: 0.16055519693021306, y: 0.0}, {x: 0.14956855223777565, y: 0.0}, {x: 0.3164930450148733, y: 0.0117}, {x: 0.16314707540599885, y: 0.0}, {x: 0.18184221683618865, y: 0.0}, {x: 0.22902085287091423, y: 0.0}, {x: 0.2627477555001694, y: 0.0}, {x: 0.35549732152997865, y: 0.0}, {x: 0.19735576928701923, y: 0.0}, {x: 0.2785397817100156, y: 0.0}, {x: 0.20839485335435562, y: 0.0}, {x: 0.43800522583751117, y: 0.0}, {x: 0.279180388, y: 0.0}, {x: 0.14775306428461188, y: 0.0}, {x: 0.11858519976899633, y: 0.0}, {x: 0.3107293001964906, y: 0.0}, {x: 0.2531188444783322, y: 0.0002}, {x: null, y: 0.0}, {x: 0.1377938519699819, y: 0.0}, {x: 0.314764010986199, y: 0.0}, {x: 0.2014238728546984, y: 0.0}, {x: 0.16300902712004012, y: 0.0}, {x: 0.25442077410341823, y: 0.0}, {x: 0.22921615216016286, y: 0.0}, {x: 0.07459882597111546, y: 0.0}, {x: 0.13788300835475528, y: 0.0}, {x: 0.19589141589077402, y: 0.0}, {x: 0.2301078205472226, y: 0.0}, {x: 0.14974842777163522, y: 0.0}, {x: 0.21697995780536536, y: 0.0}, {x: 0.2812270726579696, y: 0.0}, {x: 0.2997363741204095, y: 0.0}, {x: 0.20463062122015527, y: 0.0}, {x: 0.2918220847243648, y: 0.0}, {x: 0.4156199033084638, y: 0.0}, {x: 0.29223884684187335, y: 0.0}, {x: 0.7342540728462822, y: 0.0}, {x: 0.28076516217577574, y: 0.0}, {x: 0.18078240057598255, y: 0.0}, {x: 0.07477022441285086, y: 0.0}, {x: 0.11093914889637707, y: 0.0}, {x: 0.34525285923191407, y: 0.0}, {x: 0.2702531646983123, y: 0.0}, {x: 0.05697823305416134, y: 3617.0713}, {x: 0.0587004676970219, y: 0.0}, {x: 0.12281984931422303, y: 21.541675}, {x: 0.047748564601087944, y: 0.0}, {x: 0.08764326293315998, y: 0.0}, {x: 0.018248968016800638, y: 0.021042}, {x: 0.07682242968205609, y: 0.0}, {x: 0.04195910880248703, y: 0.0}, {x: 0.05106661576610836, y: 0.0}, {x: 0.0644734909956675, y: 0.0}, {x: 0.7100445269027529, y: 0.0}, {x: 0.15942234200014158, y: 0.0}, {x: 0.15623895386756217, y: 0.0}, {x: 0.08739084402348504, y: 0.0}, {x: 0.10055655128582211, y: 0.0}, {x: 0.08987142481579638, y: 0.0}, {x: 0.09911412792004141, y: 0.0}, {x: 0.05829132750743182, y: 0.0}, {x: 0.09067390219689131, y: 0.0}, {x: 0.019379844858703314, y: 0.0}, {x: 0.11102319074490231, y: 0.0}, {x: 0.039195637, y: 0.0}, {x: 0.08135039946602525, y: 0.0}, {x: 0.1675666337390384, y: 0.0}, {x: 0.10315430530349531, y: 0.0}, {x: 0.19273484495441925, y: 0.0}, {x: 0.5818110273833165, y: 1244.3365}, {x: 0.7998919927908096, y: 0.0}, {x: 0.5468199518035726, y: 0.0}, {x: 0.16369120912065993, y: 0.0}, {x: 0.06893617030468084, y: 0.0}, {x: 0.10820332178510317, y: 0.0}, {x: 0.1147994465242047, y: 0.0}, {x: 0.18243848992319953, y: 0.0}, {x: 0.02528227799779087, y: 0.0}, {x: 0.28689438342729745, y: 626.415468}, {x: 0.34668819698141484, y: 26.799356}, {x: 0.12496774744611679, y: 0.0}, {x: 0.182486948532748, y: 0.0}, {x: 0.13988808951851853, y: 0.0}, {x: 0.23918499912667945, y: 0.0}, {x: 0.065243536, y: 0.0}, {x: 0.06715176737775468, y: 0.0}, {x: 0.07899305565520834, y: 0.0}, {x: 0.08966304953169618, y: 0.0}, {x: 0.05552128299999999, y: 0.0}, {x: 0.046103778747604414, y: 0.016676}, {x: 0.08330261740840399, y: 0.0}, {x: 0.033269962, y: 0.0}, {x: 0.030414263411903515, y: 0.0}, {x: 0.05134618218993674, y: 0.0}, {x: 0.08885731014160328, y: 0.0}, {x: 0.14605394592467533, y: 0.0}, {x: 0.12223409128857012, y: 0.0}, {x: 0.1535433072010414, y: 0.0}, {x: 0.46566410375190603, y: 563.320881}, {x: 0.12079082816349192, y: 0.0}, {x: 0.09330797582099133, y: 0.0}, {x: 0.12005496501504302, y: 58.2}, {x: 0.2662781112369598, y: 0.0}, {x: 0.24161686585740375, y: 0.0}, {x: 0.21775072107997434, y: 0.0}, {x: 0.2174373794115607, y: 0.0}, {x: 0.38631170045926644, y: 0.0}, {x: 0.1897069872307789, y: 0.0}, {x: 0.36442963678986195, y: 0.0}, {x: 0.05139720567265469, y: 0.0}, {x: 0.0477726263321911, y: 0.0}, {x: 0.1324553765572486, y: 0.0}, {x: 0.04074542041850916, y: 0.0}, {x: 0.055712327736676615, y: 0.0}, {x: 0.16944688319622475, y: 0.0}, {x: 0.089873038183345, y: 0.0}, {x: 0.09723214305758927, y: 0.0}, {x: 0.20282515996515196, y: 0.0}, {x: 0.1299248117780451, y: 0.0}, {x: 0.08113781881148316, y: 0.0}, {x: 0.4005554610836593, y: 0.0}, {x: 0.038746439, y: 0.0}, {x: 0.05152838422707424, y: 0.0}, {x: 0.05441088218923785, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.03621573373881564, y: 96.55553888608553}, {x: 0.09524295642741396, y: 14.953824637798407}, {x: 0.159050582831405, y: 2.4976583870627134}, {x: 0.5343252280552151, y: 734.9471607128572}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.03621573373881564, y: -21.900628204789683}, {x: 0.09524295642741396, y: -8.306620690983253}, {x: 0.159050582831405, y: -0.1651207834080548}, {x: 0.5343252280552151, y: 381.88540128469054}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.03621573373881564, y: 215.01170597696074}, {x: 0.09524295642741396, y: 38.21426996658007}, {x: 0.159050582831405, y: 5.1604375575334815}, {x: 0.5343252280552151, y: 1088.008920141024}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.14600781690089334, y: 0.0}, {x: 0.14866434363995357, y: 0.0}, {x: 0.0006349206717460317, y: 0.0}, {x: 0.09096612294562945, y: 0.0}, {x: 0.2872972650912279, y: 1399.429818}, {x: 0.027405990992033145, y: 0.093729}, {x: 0.04897772339273727, y: 0.0}, {x: 0.05417233998297996, y: 0.0}, {x: 0.06144496965766373, y: 0.0}, {x: 0.10792416143114107, y: 0.0}, {x: 0.16033064787118162, y: 0.0}, {x: 0.21148149690948728, y: 0.0}, {x: 0.0887425679054592, y: 0.0}, {x: 0.12767025507061186, y: 0.0}, {x: 0.10515788439964587, y: 0.0}, {x: 0.16910091729115598, y: 0.0}, {x: 0.1930280245735703, y: 0.0}, {x: 0.011501807369043706, y: 0.0}, {x: 0.05427942113813719, y: 0.0}, {x: 0.08567498528571428, y: 0.175}, {x: 0.09145919788813969, y: 0.0}, {x: 0.187288356407528, y: 0.0}, {x: 0.15187346427257367, y: 0.0}, {x: 0.057345913484867055, y: 0.0}, {x: 0.07061362944064138, y: 0.0}, {x: 0.12370005494198139, y: 0.0}, {x: 0.09132007242646173, y: 0.0}, {x: 0.07542857172914286, y: 0.0}, {x: 0.025542784, y: 0.0}, {x: 0.072033898, y: 0.0}, {x: 0.162601626, y: 0.0}, {x: 0.049731183, y: 0.0}, {x: 0.111776447, y: 0.0}, {x: 0.09758364347769516, y: 0.0}, {x: 0.0525187566323687, y: 0.0}, {x: 0.075785582, y: 0.0}, {x: 0.022698613, y: 0.0}, {x: 0.10743801645708836, y: 0.0}, {x: 0.036986301345205475, y: 0.0}, {x: 0.059933407, y: 0.0}, {x: 0.10910652919072165, y: 0.0}, {x: 0.062365591, y: 0.0}, {x: 0.103448276, y: 0.0}, {x: 0.049327354, y: 0.0}, {x: 0.116154873, y: 0.0}, {x: 0.061307901923705714, y: 0.0}, {x: 0.18194842399544617, y: 0.0}, {x: 0.1575498195141991, y: 0.0}, {x: 0.11401141677389726, y: 0.0}, {x: 0.08595615365205123, y: 0.0}, {x: 0.24673391142265602, y: 33.039}, {x: 0.07584655766774959, y: 0.0}, {x: 0.03673408686927424, y: 0.0}, {x: 0.04869809984306826, y: 0.0}, {x: 0.06527184303875055, y: 0.0}, {x: 0.22348232161922763, y: 0.0}, {x: 0.18540906717840022, y: 0.0}, {x: 0.06969163553738836, y: 999.999999}, {x: 0.05370524576623647, y: 0.0}, {x: 0.2807476728002667, y: 2369.610135}, {x: 0.06310891360644177, y: 0.0}, {x: 0.0700884686209579, y: 0.0}, {x: 0.03719984268219394, y: 0.0}, {x: 0.42051853165363917, y: 1019.716757}, {x: 0.13253480327743625, y: 0.0}, {x: 0.07794676815941064, y: 40.416186}, {x: 0.07550257135289076, y: 0.0}, {x: 0.2017284992976391, y: 0.0}, {x: 0.16616199835862983, y: 0.0}, {x: 0.18036978767899295, y: 0.0}, {x: 0.14885752700000002, y: 0.0}, {x: 0.040358744, y: 0.0}, {x: 0.445730825, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.06215875692776144, y: 0.0}, {x: 0.14272355328147285, y: 1.335464}, {x: 0.0847117522847226, y: 0.072}, {x: 0.29035350802185456, y: 0.0}, {x: 0.6164372345500128, y: 176.850903}, {x: 0.18195329081429581, y: 0.0}, {x: 0.11752369098539692, y: 0.0}, {x: 0.20049721349991803, y: 0.0}, {x: 0.12439008525255352, y: 0.0}, {x: 0.07022471931924767, y: 0.0}, {x: 0.09509954082174578, y: 0.0}, {x: 0.057964535843093426, y: 0.0}, {x: 0.10687175389752297, y: 0.0}, {x: 0.14637230624305814, y: 0.0}, {x: 0.08602749901337792, y: 0.0}, {x: 0.05189620768234959, y: 0.0}, {x: 0.11095627280019586, y: 1.346}, {x: 0.014153511031573217, y: 0.0}, {x: 0.0985841637399056, y: 0.0}, {x: 0.8686037358248168, y: 221.159543}, {x: 0.43357281788228874, y: 0.0}, {x: 0.19869524064269933, y: 57.7297}, {x: 0.2924537138944394, y: 0.0}, {x: 0.33892752288494826, y: 172.582673}, {x: 0.0843955194165701, y: 0.0}, {x: 0.12399999983066666, y: 0.0}, {x: 0.05950437740762724, y: 0.0}, {x: 0.057258440809709044, y: 0.0}, {x: 0.09487446479665625, y: 0.0}, {x: 0.1593232943439301, y: 0.0}, {x: 0.07362417591052514, y: 0.0}, {x: 0.06404744248687917, y: 0.0}, {x: 0.034409515502124045, y: 0.0}, {x: 0.096975089, y: 0.0}, {x: 0.08185654, y: 0.0}, {x: 0.046116505, y: 0.0}, {x: 0.105202312, y: 0.0}, {x: 0.041593439, y: 0.0}, {x: 0.037073171, y: 0.0}, {x: 0.06059421454104769, y: 0.0}, {x: 0.10244912071714384, y: 0.0}, {x: 0.047932331, y: 0.0}, {x: 0.097491039, y: 0.0}, {x: 0.167030568, y: 0.0}, {x: 0.07583311466452373, y: 0.0}, {x: 0.080824972, y: 0.0}, {x: 0.131991052, y: 0.0}, {x: 0.212686567, y: 0.0}, {x: 0.10537913171872974, y: 1.405256}, {x: 0.062048193, y: 0.0}, {x: 0.19580038190291793, y: 0.0}, {x: 0.09214145383045187, y: 0.0}, {x: 0.13902860734509587, y: 0.0}, {x: 0.09005847968888889, y: 0.0}, {x: 0.029233315, y: 0.0}, {x: 0.10167130911838439, y: 0.0}, {x: 0.11569851188238119, y: 0.0}, {x: 0.7186760593456725, y: 1111.110965}, {x: 0.17291298054165996, y: 0.0}, {x: 0.14945368162707837, y: 0.0}, {x: 0.30016435352136595, y: 360.22096}, {x: 0.5803794179719596, y: 940.76283}, {x: 0.2130594497696229, y: 0.0}, {x: 0.16727282034117918, y: 0.0}, {x: 0.08103745175355145, y: 0.0}, {x: 0.11423687760430169, y: 388.743118}, {x: 0.149228478813752, y: 0.0}, {x: 0.1370682289116929, y: 0.0}, {x: 0.09897816057383291, y: 0.0}, {x: 0.11150684951143837, y: 0.0}, {x: 0.054567600544579785, y: 0.0}, {x: 0.065130261, y: 0.0}, {x: 0.07796217717985333, y: 0.0}, {x: 0.1863354034069673, y: 0.0}, {x: 0.1004271382473428, y: 0.0}, {x: 0.3375414572358511, y: 0.0}, {x: 0.12983469738356604, y: 0.45}, {x: 0.052373158872340425, y: 0.0}, {x: 0.1841405003447756, y: 0.0}, {x: 0.11432880819788838, y: 0.0}, {x: 0.17817608687563227, y: 0.0}, {x: 0.10745933069587356, y: 5e-05}, {x: 0.10782721663478403, y: 0.0}, {x: 0.06213151891020409, y: 0.0}, {x: 0.058710913, y: 0.0}, {x: 0.10798816600000001, y: 0.0}, {x: 0.042051282, y: 0.0}, {x: 0.051079137, y: 0.0}, {x: 0.06083411725776105, y: 0.0}, {x: 0.11865704293558618, y: 0.0}, {x: 0.5215631929184774, y: 3939.66886}, {x: 0.1949583907657752, y: 0.0}, {x: 0.16676968722904564, y: 0.0}, {x: 0.11276602586213207, y: 0.0}, {x: 0.20354804139902372, y: 396.4304}, {x: 0.18546767184958224, y: 0.0}, {x: 0.28029345844854286, y: 0.0}, {x: 0.2604111753173432, y: 0.0}, {x: 0.3434155765964254, y: 0.0}, {x: 0.17251446184635347, y: 0.0}, {x: 0.11368379194812679, y: 0.0}, {x: 0.10251197911078845, y: 0.0}, {x: 0.11918430310050553, y: 0.0}, {x: 0.0647076286224399, y: 0.0}, {x: 0.1309866229984477, y: 0.0}, {x: 0.23531186377773586, y: 0.0}, {x: 0.20318264247545803, y: 0.0}, {x: 0.13032397413952485, y: 0.0}, {x: 0.11343760513382946, y: 0.0}, {x: 0.19571899627843292, y: 0.0}, {x: 0.15461281798704338, y: 0.0}, {x: 0.21877316999861599, y: 0.0}, {x: 0.314138058340499, y: 68.97}, {x: 0.5607041684087414, y: 0.0}, {x: 0.6133895974584894, y: 0.0}, {x: 0.28997068254344216, y: 0.0}, {x: 0.39829257899680814, y: 132.94799999999998}, {x: 0.26764092971080744, y: 57.339039}, {x: 0.274800413969249, y: 0.0}, {x: 0.38545644956107544, y: 0.0}, {x: 0.24215607405088493, y: 0.0}, {x: 0.16055519693021306, y: 0.0}, {x: 0.14956855223777565, y: 0.0}, {x: 0.3164930450148733, y: 0.0117}, {x: 0.16314707540599885, y: 0.0}, {x: 0.18184221683618865, y: 0.0}, {x: 0.22902085287091423, y: 0.0}, {x: 0.2627477555001694, y: 0.0}, {x: 0.35549732152997865, y: 0.0}, {x: 0.19735576928701923, y: 0.0}, {x: 0.2785397817100156, y: 0.0}, {x: 0.20839485335435562, y: 0.0}, {x: 0.43800522583751117, y: 0.0}, {x: 0.279180388, y: 0.0}, {x: 0.14775306428461188, y: 0.0}, {x: 0.11858519976899633, y: 0.0}, {x: 0.3107293001964906, y: 0.0}, {x: 0.2531188444783322, y: 0.0002}, {x: null, y: 0.0}, {x: 0.1377938519699819, y: 0.0}, {x: 0.314764010986199, y: 0.0}, {x: 0.2014238728546984, y: 0.0}, {x: 0.16300902712004012, y: 0.0}, {x: 0.25442077410341823, y: 0.0}, {x: 0.22921615216016286, y: 0.0}, {x: 0.07459882597111546, y: 0.0}, {x: 0.13788300835475528, y: 0.0}, {x: 0.19589141589077402, y: 0.0}, {x: 0.2301078205472226, y: 0.0}, {x: 0.14974842777163522, y: 0.0}, {x: 0.21697995780536536, y: 0.0}, {x: 0.2812270726579696, y: 0.0}, {x: 0.2997363741204095, y: 0.0}, {x: 0.20463062122015527, y: 0.0}, {x: 0.2918220847243648, y: 0.0}, {x: 0.4156199033084638, y: 0.0}, {x: 0.29223884684187335, y: 0.0}, {x: 0.7342540728462822, y: 0.0}, {x: 0.28076516217577574, y: 0.0}, {x: 0.18078240057598255, y: 0.0}, {x: 0.07477022441285086, y: 0.0}, {x: 0.11093914889637707, y: 0.0}, {x: 0.34525285923191407, y: 0.0}, {x: 0.2702531646983123, y: 0.0}, {x: 0.05697823305416134, y: 3617.0713}, {x: 0.0587004676970219, y: 0.0}, {x: 0.12281984931422303, y: 21.541675}, {x: 0.047748564601087944, y: 0.0}, {x: 0.08764326293315998, y: 0.0}, {x: 0.018248968016800638, y: 0.021042}, {x: 0.07682242968205609, y: 0.0}, {x: 0.04195910880248703, y: 0.0}, {x: 0.05106661576610836, y: 0.0}, {x: 0.0644734909956675, y: 0.0}, {x: 0.7100445269027529, y: 0.0}, {x: 0.15942234200014158, y: 0.0}, {x: 0.15623895386756217, y: 0.0}, {x: 0.08739084402348504, y: 0.0}, {x: 0.10055655128582211, y: 0.0}, {x: 0.08987142481579638, y: 0.0}, {x: 0.09911412792004141, y: 0.0}, {x: 0.05829132750743182, y: 0.0}, {x: 0.09067390219689131, y: 0.0}, {x: 0.019379844858703314, y: 0.0}, {x: 0.11102319074490231, y: 0.0}, {x: 0.039195637, y: 0.0}, {x: 0.08135039946602525, y: 0.0}, {x: 0.1675666337390384, y: 0.0}, {x: 0.10315430530349531, y: 0.0}, {x: 0.19273484495441925, y: 0.0}, {x: 0.5818110273833165, y: 1244.3365}, {x: 0.7998919927908096, y: 0.0}, {x: 0.5468199518035726, y: 0.0}, {x: 0.16369120912065993, y: 0.0}, {x: 0.06893617030468084, y: 0.0}, {x: 0.10820332178510317, y: 0.0}, {x: 0.1147994465242047, y: 0.0}, {x: 0.18243848992319953, y: 0.0}, {x: 0.02528227799779087, y: 0.0}, {x: 0.28689438342729745, y: 626.415468}, {x: 0.34668819698141484, y: 26.799356}, {x: 0.12496774744611679, y: 0.0}, {x: 0.182486948532748, y: 0.0}, {x: 0.13988808951851853, y: 0.0}, {x: 0.23918499912667945, y: 0.0}, {x: 0.065243536, y: 0.0}, {x: 0.06715176737775468, y: 0.0}, {x: 0.07899305565520834, y: 0.0}, {x: 0.08966304953169618, y: 0.0}, {x: 0.05552128299999999, y: 0.0}, {x: 0.046103778747604414, y: 0.016676}, {x: 0.08330261740840399, y: 0.0}, {x: 0.033269962, y: 0.0}, {x: 0.030414263411903515, y: 0.0}, {x: 0.05134618218993674, y: 0.0}, {x: 0.08885731014160328, y: 0.0}, {x: 0.14605394592467533, y: 0.0}, {x: 0.12223409128857012, y: 0.0}, {x: 0.1535433072010414, y: 0.0}, {x: 0.46566410375190603, y: 563.320881}, {x: 0.12079082816349192, y: 0.0}, {x: 0.09330797582099133, y: 0.0}, {x: 0.12005496501504302, y: 58.2}, {x: 0.2662781112369598, y: 0.0}, {x: 0.24161686585740375, y: 0.0}, {x: 0.21775072107997434, y: 0.0}, {x: 0.2174373794115607, y: 0.0}, {x: 0.38631170045926644, y: 0.0}, {x: 0.1897069872307789, y: 0.0}, {x: 0.36442963678986195, y: 0.0}, {x: 0.05139720567265469, y: 0.0}, {x: 0.0477726263321911, y: 0.0}, {x: 0.1324553765572486, y: 0.0}, {x: 0.04074542041850916, y: 0.0}, {x: 0.055712327736676615, y: 0.0}, {x: 0.16944688319622475, y: 0.0}, {x: 0.089873038183345, y: 0.0}, {x: 0.09723214305758927, y: 0.0}, {x: 0.20282515996515196, y: 0.0}, {x: 0.1299248117780451, y: 0.0}, {x: 0.08113781881148316, y: 0.0}, {x: 0.4005554610836593, y: 0.0}, {x: 0.038746439, y: 0.0}, {x: 0.05152838422707424, y: 0.0}, {x: 0.05441088218923785, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.03621573373881564, y: 96.43220518374316}, {x: 0.09524295642741396, y: 15.851633004969658}, {x: 0.159050582831405, y: 2.527085964149216}, {x: 0.5343252280552151, y: 730.5928304336842}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.03621573373881564, y: -19.257985547460663}, {x: 0.09524295642741396, y: -7.8744367867833045}, {x: 0.159050582831405, y: -0.15014628862113355}, {x: 0.5343252280552151, y: 384.10152904392135}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.03621573373881564, y: 212.122395914947}, {x: 0.09524295642741396, y: 39.57770279672262}, {x: 0.159050582831405, y: 5.204318216919566}, {x: 0.5343252280552151, y: 1077.084131823447}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LINGISOPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LINGISOPCT.html index 42c8db54..2f414c7c 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LINGISOPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LINGISOPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.017938507136190003, y: 0.093729}, {x: 0.0604404827985851, y: 1795.0820099999999}, {x: 0.011372628855576746, y: 21.562717000000003}, {x: 0.008357269645829132, y: 0.175}, {x: 0.002795744772792629, y: 0.0}, {x: 0.06473937415641967, y: 0.0}, {x: 0.016060385614475904, y: 0.0}, {x: 0.031878407541989714, y: 385.927118}, {x: 0.0027227423266345885, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04086985055267014, y: 963.794416}, {x: 0.10538239607972083, y: 2076.866008}, {x: 0.027863705283657617, y: 999.999999}, {x: 0.017033344512794805, y: 0.0}, {x: 0.027730832180429967, y: 0.0}, {x: 0.08451896590626226, y: 181.412247}, {x: 0.009221347850759952, y: 0.0}, {x: 0.0022311396373056996, y: 0.0}, {x: 0.08362330540239646, y: 4352.648076}, {x: 0.04136295615448386, y: 38.4927}, {x: 0.06870865713776342, y: 2220.396501}, {x: 0.007678460984205858, y: 0.0}, {x: 0.03834981913525486, y: 196.386236}, {x: 0.04334664904408527, y: 0.0}, {x: 0.021166770023758386, y: 653.215024}, {x: 0.056306617179541454, y: 396.44210000000004}, {x: 0.06566918095297263, y: 621.520881}, {x: 0.09740382557425986, y: 427.712621}, {x: 0.07024655969944445, y: 1100.5425}, {x: 0.07584916084444687, y: 0.0}, {x: 0.05013358212462723, y: 3617.0713}, {x: 0.013713630108452652, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.006564189897616838, y: 6.730062815190076}, {x: 0.024121246566927983, y: 312.09022727799805}, {x: 0.0500429695970901, y: 708.7763460575767}, {x: 0.08517711096763937, y: 1368.190784739534}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.006564189897616838, y: -1.9478364504789099}, {x: 0.024121246566927983, y: 55.79696848669562}, {x: 0.0500429695970901, y: 27.91959174298131}, {x: 0.08517711096763937, y: 541.872336143935}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.006564189897616838, y: 15.407962080859061}, {x: 0.024121246566927983, y: 568.3834860693005}, {x: 0.0500429695970901, y: 1389.633100372172}, {x: 0.08517711096763937, y: 2194.509233335133}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.017938507136190003, y: 0.093729}, {x: 0.0604404827985851, y: 1795.0820099999999}, {x: 0.011372628855576746, y: 21.562717000000003}, {x: 0.008357269645829132, y: 0.175}, {x: 0.002795744772792629, y: 0.0}, {x: 0.06473937415641967, y: 0.0}, {x: 0.016060385614475904, y: 0.0}, {x: 0.031878407541989714, y: 385.927118}, {x: 0.0027227423266345885, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04086985055267014, y: 963.794416}, {x: 0.10538239607972083, y: 2076.866008}, {x: 0.027863705283657617, y: 999.999999}, {x: 0.017033344512794805, y: 0.0}, {x: 0.027730832180429967, y: 0.0}, {x: 0.08451896590626226, y: 181.412247}, {x: 0.009221347850759952, y: 0.0}, {x: 0.0022311396373056996, y: 0.0}, {x: 0.08362330540239646, y: 4352.648076}, {x: 0.04136295615448386, y: 38.4927}, {x: 0.06870865713776342, y: 2220.396501}, {x: 0.007678460984205858, y: 0.0}, {x: 0.03834981913525486, y: 196.386236}, {x: 0.04334664904408527, y: 0.0}, {x: 0.021166770023758386, y: 653.215024}, {x: 0.056306617179541454, y: 396.44210000000004}, {x: 0.06566918095297263, y: 621.520881}, {x: 0.09740382557425986, y: 427.712621}, {x: 0.07024655969944445, y: 1100.5425}, {x: 0.07584916084444687, y: 0.0}, {x: 0.05013358212462723, y: 3617.0713}, {x: 0.013713630108452652, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.006564189897616838, y: 6.720382307064532}, {x: 0.024121246566927983, y: 303.9489987731731}, {x: 0.0500429695970901, y: 710.959376988467}, {x: 0.08517711096763937, y: 1371.0745176269768}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.006564189897616838, y: -2.3600474938728953}, {x: 0.024121246566927983, y: 52.56853021574594}, {x: 0.0500429695970901, y: -1.437604732906948}, {x: 0.08517711096763937, y: 556.7479942216602}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.006564189897616838, y: 15.80081210800196}, {x: 0.024121246566927983, y: 555.3294673306003}, {x: 0.0500429695970901, y: 1423.356358709841}, {x: 0.08517711096763937, y: 2185.4010410322935}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LOWINCPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LOWINCPCT.html index 3a51af70..9f496e1c 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LOWINCPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LOWINCPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.1811140827446158, y: 0.093729}, {x: 0.27104736884160346, y: 1795.0820099999999}, {x: 0.12123933019190788, y: 21.562717000000003}, {x: 0.24837274078923893, y: 0.175}, {x: 0.27276799742621555, y: 0.0}, {x: 0.20131302981130614, y: 0.0}, {x: 0.25584848784462777, y: 0.0}, {x: 0.2069982605759057, y: 385.927118}, {x: 0.19113901003990943, y: 0.0}, {x: 0.150867824, y: 0.0}, {x: 0.1949600403893936, y: 963.794416}, {x: 0.3451258235151375, y: 2076.866008}, {x: 0.2023376804907226, y: 999.999999}, {x: 0.1336546431220758, y: 0.0}, {x: 0.2012383409523506, y: 0.0}, {x: 0.2355317178581692, y: 181.412247}, {x: 0.0856468044190618, y: 0.0}, {x: 0.0820319162931835, y: 0.0}, {x: 0.2601719928492199, y: 4352.648076}, {x: 0.11901042833498539, y: 38.4927}, {x: 0.32087044790008945, y: 2220.396501}, {x: 0.2909121522587178, y: 0.0}, {x: 0.26012126573701405, y: 196.386236}, {x: 0.29130075764992464, y: 0.0}, {x: 0.18135318972486425, y: 653.215024}, {x: 0.14644745849777466, y: 396.44210000000004}, {x: 0.2471462770654, y: 621.520881}, {x: 0.20556651669543421, y: 427.712621}, {x: 0.2238298031471064, y: 1100.5425}, {x: 0.20639942373530065, y: 0.0}, {x: 0.18046568611740438, y: 3617.0713}, {x: 0.17194491754873106, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.13018370513420977, y: 154.48019677457458}, {x: 0.19114379628415723, y: 663.9513665642414}, {x: 0.23043439045540137, y: 563.1902053667594}, {x: 0.3010212529164309, y: 2264.3276290192516}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.13018370513420977, y: -27.655939826740962}, {x: 0.19114379628415723, y: -181.0183440191238}, {x: 0.23043439045540137, y: 212.62764520627775}, {x: 0.3010212529164309, y: 1100.715192455595}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.13018370513420977, y: 336.6163333758901}, {x: 0.19114379628415723, y: 1508.9210771476066}, {x: 0.23043439045540137, y: 913.7527655272411}, {x: 0.3010212529164309, y: 3427.9400655829086}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.1811140827446158, y: 0.093729}, {x: 0.27104736884160346, y: 1795.0820099999999}, {x: 0.12123933019190788, y: 21.562717000000003}, {x: 0.24837274078923893, y: 0.175}, {x: 0.27276799742621555, y: 0.0}, {x: 0.20131302981130614, y: 0.0}, {x: 0.25584848784462777, y: 0.0}, {x: 0.2069982605759057, y: 385.927118}, {x: 0.19113901003990943, y: 0.0}, {x: 0.150867824, y: 0.0}, {x: 0.1949600403893936, y: 963.794416}, {x: 0.3451258235151375, y: 2076.866008}, {x: 0.2023376804907226, y: 999.999999}, {x: 0.1336546431220758, y: 0.0}, {x: 0.2012383409523506, y: 0.0}, {x: 0.2355317178581692, y: 181.412247}, {x: 0.0856468044190618, y: 0.0}, {x: 0.0820319162931835, y: 0.0}, {x: 0.2601719928492199, y: 4352.648076}, {x: 0.11901042833498539, y: 38.4927}, {x: 0.32087044790008945, y: 2220.396501}, {x: 0.2909121522587178, y: 0.0}, {x: 0.26012126573701405, y: 196.386236}, {x: 0.29130075764992464, y: 0.0}, {x: 0.18135318972486425, y: 653.215024}, {x: 0.14644745849777466, y: 396.44210000000004}, {x: 0.2471462770654, y: 621.520881}, {x: 0.20556651669543421, y: 427.712621}, {x: 0.2238298031471064, y: 1100.5425}, {x: 0.20639942373530065, y: 0.0}, {x: 0.18046568611740438, y: 3617.0713}, {x: 0.17194491754873106, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.13018370513420977, y: 156.16382601076893}, {x: 0.19114379628415723, y: 678.9068273815765}, {x: 0.23043439045540137, y: 558.3035336327483}, {x: 0.3010212529164309, y: 2258.0532885833513}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.13018370513420977, y: -24.369127317915286}, {x: 0.19114379628415723, y: -156.63910536043795}, {x: 0.23043439045540137, y: 213.98997818742015}, {x: 0.3010212529164309, y: 1070.3893581979753}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.13018370513420977, y: 336.69677933945314}, {x: 0.19114379628415723, y: 1514.452760123591}, {x: 0.23043439045540137, y: 902.6170890780766}, {x: 0.3010212529164309, y: 3445.717218968727}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_MINORPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_MINORPCT.html index e9542978..3e9df6ff 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_MINORPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_MINORPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.1289289088162181, y: 0.093729}, {x: 0.24163639598155615, y: 1795.0820099999999}, {x: 0.07091840553176652, y: 21.562717000000003}, {x: 0.14047379032555443, y: 0.175}, {x: 0.1248862936082925, y: 0.0}, {x: 0.29082319596074074, y: 0.0}, {x: 0.1050815676224639, y: 0.0}, {x: 0.1583332286125611, y: 385.927118}, {x: 0.055759977411548256, y: 0.0}, {x: 0.116154873, y: 0.0}, {x: 0.27638200888740594, y: 963.794416}, {x: 0.24185909493489538, y: 2076.866008}, {x: 0.19935666088160994, y: 999.999999}, {x: 0.05299341160942423, y: 0.0}, {x: 0.1761902976085619, y: 0.0}, {x: 0.3224248941184247, y: 181.412247}, {x: 0.124331982635713, y: 0.0}, {x: 0.06412758224106722, y: 0.0}, {x: 0.4104907716364646, y: 4352.648076}, {x: 0.25816917322476657, y: 38.4927}, {x: 0.38175926652127734, y: 2220.396501}, {x: 0.12034161498560338, y: 0.0}, {x: 0.23574195529715927, y: 196.386236}, {x: 0.24730622177743014, y: 0.0}, {x: 0.20496020336019868, y: 653.215024}, {x: 0.2959446006412626, y: 396.44210000000004}, {x: 0.3220574128056399, y: 621.520881}, {x: 0.37633286150419887, y: 427.712621}, {x: 0.3940953786847133, y: 1100.5425}, {x: 0.47915895754896803, y: 0.0}, {x: 0.323201260760666, y: 3617.0713}, {x: 0.1375108383419024, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.08887056373728593, y: 7.947833714103754}, {x: 0.1725493975969133, y: 277.60880365760306}, {x: 0.26141194150551794, y: 526.0535904569971}, {x: 0.39081588061566247, y: 1488.7815575159116}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.08887056373728593, y: -2.685746722453483}, {x: 0.1725493975969133, y: 43.79813586937587}, {x: 0.26141194150551794, y: 32.5294687613702}, {x: 0.39081588061566247, y: 669.0095580314385}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.08887056373728593, y: 18.58141415066099}, {x: 0.1725493975969133, y: 511.41947144583025}, {x: 0.26141194150551794, y: 1019.5777121526239}, {x: 0.39081588061566247, y: 2308.553557000385}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.1289289088162181, y: 0.093729}, {x: 0.24163639598155615, y: 1795.0820099999999}, {x: 0.07091840553176652, y: 21.562717000000003}, {x: 0.14047379032555443, y: 0.175}, {x: 0.1248862936082925, y: 0.0}, {x: 0.29082319596074074, y: 0.0}, {x: 0.1050815676224639, y: 0.0}, {x: 0.1583332286125611, y: 385.927118}, {x: 0.055759977411548256, y: 0.0}, {x: 0.116154873, y: 0.0}, {x: 0.27638200888740594, y: 963.794416}, {x: 0.24185909493489538, y: 2076.866008}, {x: 0.19935666088160994, y: 999.999999}, {x: 0.05299341160942423, y: 0.0}, {x: 0.1761902976085619, y: 0.0}, {x: 0.3224248941184247, y: 181.412247}, {x: 0.124331982635713, y: 0.0}, {x: 0.06412758224106722, y: 0.0}, {x: 0.4104907716364646, y: 4352.648076}, {x: 0.25816917322476657, y: 38.4927}, {x: 0.38175926652127734, y: 2220.396501}, {x: 0.12034161498560338, y: 0.0}, {x: 0.23574195529715927, y: 196.386236}, {x: 0.24730622177743014, y: 0.0}, {x: 0.20496020336019868, y: 653.215024}, {x: 0.2959446006412626, y: 396.44210000000004}, {x: 0.3220574128056399, y: 621.520881}, {x: 0.37633286150419887, y: 427.712621}, {x: 0.3940953786847133, y: 1100.5425}, {x: 0.47915895754896803, y: 0.0}, {x: 0.323201260760666, y: 3617.0713}, {x: 0.1375108383419024, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.08887056373728593, y: 7.819361135780673}, {x: 0.1725493975969133, y: 282.3370307406784}, {x: 0.26141194150551794, y: 518.2034862724445}, {x: 0.39081588061566247, y: 1505.4213134552963}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.08887056373728593, y: -2.7855633874466417}, {x: 0.1725493975969133, y: 51.75098722807502}, {x: 0.26141194150551794, y: 24.661102585252763}, {x: 0.39081588061566247, y: 625.8720915348603}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.08887056373728593, y: 18.424285659007985}, {x: 0.1725493975969133, y: 512.9230742532818}, {x: 0.26141194150551794, y: 1011.7458699596361}, {x: 0.39081588061566247, y: 2384.970535375732}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_counts_per_month.html b/docs/_includes/charts/dash_MAEEADP_dashboard_counts_per_month.html index 99385750..f9b3ea65 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_counts_per_month.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_counts_per_month.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026"], - datasets: [{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 1.0, 8.0, 0.0, 1.0, 7.0, 19.0, 15.0, 5.0, 1.0, 1.0, 12.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 5.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 2.0, 2.0, 0.0, 2.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0, 0.0, 2.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y'},{'data': [0.0, 196.0, 183.0, 264.0, 233.0, 173.0, 160.0, 214.0, 34.0, 110.0, 204.0, 146.0, 345.0, 657.0, 361.0, 342.0, 105.0, 73.0, 251.0, 273.0, 51.0, 325.0, 149.0, 236.0, 254.0, 168.0, 213.0, 63.0, 19.0, 56.0, 179.0, 68.0, 35.0, 178.0, 95.0, 267.0, 71.0, 222.0, 75.0, 176.0, 188.0, 78.0, 65.0, 9.0, 10.0, 106.0, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y'},{'data': [0.0, 5.0, 4.0, 16.0, 10.0, 10.0, 15.0, 16.0, 2.0, 7.0, 12.0, 10.0, 14.0, 42.0, 19.0, 22.0, 6.0, 4.0, 26.0, 32.0, 5.0, 35.0, 19.0, 13.0, 9.0, 11.0, 16.0, 3.0, 1.0, 5.0, 14.0, 8.0, 8.0, 17.0, 16.0, 31.0, 8.0, 12.0, 5.0, 12.0, 16.0, 8.0, 7.0, 1.0, 2.0, 20.0, 1.0, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 1.0, 2.0, 3.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y'},{'data': [0.0, 11.0, 9.0, 16.0, 18.0, 17.0, 17.0, 28.0, 2.0, 14.0, 13.0, 12.0, 18.0, 53.0, 30.0, 33.0, 10.0, 8.0, 26.0, 37.0, 6.0, 32.0, 16.0, 27.0, 18.0, 8.0, 9.0, 4.0, 2.0, 7.0, 21.0, 10.0, 4.0, 22.0, 10.0, 26.0, 5.0, 15.0, 6.0, 16.0, 23.0, 11.0, 7.0, 1.0, 1.0, 12.0, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y'},{'data': [2.9818134227459927, 2.0044141739855794, 2.616262859020171, 5.391519967019915, 5.2484745340037, 2.9598179364021533, 5.779180619008587, 7.363227050526272, 1.7866738518544103, 4.849953734977428, 3.4717122562994716, 3.7805933744996065, 5.067794818036316, 9.130430254261135, 6.545395945462382, 7.294112346440152, 3.2250284255490778, 2.0697368775326006, 7.039747528667467, 7.743386216709642, 1.63976479610582, 8.848222460150135, 4.321511420210335, 5.232397505000315, 3.262279225213264, 3.195808384780778, 4.376995751961096, 2.446513179597271, 1.120856668494856, 3.0691665466330518, 5.303273367829183, 1.679174448563101, 3.9622473594767085, 4.046446202923702, 4.377958524089519, 7.775284127883787, 2.2851700176416103, 3.057190257313136, 2.9936487997402303, 3.4798802163956166, 5.862367203791788, 2.626839800687645, 3.3508169692593692, 3.2227415320849797, 2.162366428527771, 4.511813427188704, 2.3095070203495287, 1.8701324732027147], 'label': 'Precipitation (48-hr lookback)', 'borderColor': 'rgba(100,150,255,1)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y1', 'pointRadius': 1}] + labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026"], + datasets: [{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 1.0, 8.0, 0.0, 1.0, 7.0, 19.0, 15.0, 5.0, 1.0, 1.0, 12.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 5.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 2.0, 2.0, 0.0, 2.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0, 0.0, 2.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y'},{'data': [0.0, 196.0, 183.0, 264.0, 233.0, 173.0, 160.0, 214.0, 34.0, 110.0, 204.0, 146.0, 345.0, 657.0, 361.0, 342.0, 105.0, 73.0, 251.0, 273.0, 51.0, 325.0, 149.0, 236.0, 254.0, 168.0, 213.0, 63.0, 19.0, 56.0, 179.0, 68.0, 35.0, 178.0, 95.0, 267.0, 71.0, 222.0, 75.0, 176.0, 188.0, 78.0, 65.0, 9.0, 10.0, 106.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y'},{'data': [0.0, 5.0, 4.0, 16.0, 10.0, 10.0, 15.0, 16.0, 2.0, 7.0, 12.0, 10.0, 14.0, 42.0, 19.0, 22.0, 6.0, 4.0, 26.0, 32.0, 5.0, 35.0, 19.0, 13.0, 9.0, 11.0, 16.0, 3.0, 1.0, 5.0, 14.0, 8.0, 8.0, 17.0, 16.0, 31.0, 8.0, 12.0, 5.0, 12.0, 16.0, 8.0, 7.0, 1.0, 2.0, 20.0, 1.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 1.0, 2.0, 3.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y'},{'data': [0.0, 11.0, 9.0, 16.0, 18.0, 17.0, 17.0, 28.0, 2.0, 14.0, 13.0, 12.0, 18.0, 53.0, 30.0, 33.0, 10.0, 8.0, 26.0, 37.0, 6.0, 32.0, 16.0, 27.0, 18.0, 8.0, 9.0, 4.0, 2.0, 7.0, 21.0, 10.0, 4.0, 22.0, 10.0, 26.0, 5.0, 15.0, 6.0, 16.0, 23.0, 11.0, 7.0, 1.0, 1.0, 12.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y'},{'data': [2.9818134227459927, 2.0044141739855794, 2.616262859020171, 5.391519967019915, 5.2484745340037, 2.9598179364021533, 5.779180619008587, 7.363227050526272, 1.7866738518544103, 4.849953734977428, 3.4717122562994716, 3.7805933744996065, 5.067794818036316, 9.130430254261135, 6.545395945462382, 7.294112346440152, 3.2250284255490778, 2.0697368775326006, 7.039747528667467, 7.743386216709642, 1.63976479610582, 8.848222460150135, 4.321511420210335, 5.232397505000315, 3.262279225213264, 3.195808384780778, 4.376995751961096, 2.446513179597271, 1.120856668494856, 3.0691665466330518, 5.303273367829183, 1.679174448563101, 3.9622473594767085, 4.046446202923702, 4.377958524089519, 7.775284127883787, 2.2851700176416103, 3.057190257313136, 2.9936487997402303, 3.4798802163956166, 5.862367203791788, 2.626839800687645, 3.3508169692593692, 3.2227415320849797, 2.158357454105822, 4.5067638926782365, 1.940736580831919], 'label': 'Precipitation (48-hr lookback)', 'borderColor': 'rgba(100,150,255,1)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y1', 'pointRadius': 1}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_modeled_vs_metered_fraction.html b/docs/_includes/charts/dash_MAEEADP_dashboard_modeled_vs_metered_fraction.html index 584668fe..f17b4f61 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_modeled_vs_metered_fraction.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_modeled_vs_metered_fraction.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026"], - datasets: [{'data': [null, 49.48979591836735, 46.994535519125684, 64.39393939393939, 39.91416309012876, 51.445086705202314, 45.0, 45.794392523364486, 35.294117647058826, 49.09090909090909, 50.98039215686274, 54.109589041095894, 51.30434782608696, 63.62252663622526, 47.64542936288089, 42.98245614035088, 33.33333333333333, 30.136986301369863, 42.62948207171315, 41.02564102564102, 43.13725490196079, 42.15384615384615, 53.02013422818792, 40.67796610169492, 51.574803149606296, 36.30952380952381, 43.1924882629108, 42.857142857142854, 26.31578947368421, 37.5, 43.575418994413404, 42.64705882352941, 22.857142857142858, 47.19101123595505, 35.78947368421053, 54.30711610486891, 45.07042253521127, 47.74774774774775, 49.333333333333336, 51.70454545454546, 50.0, 44.871794871794876, 49.23076923076923, 33.33333333333333, 20.0, 20.754716981132077, null, null], 'label': 'CSO – UnTreated', 'borderColor': 'rgba(31, 119, 180,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 2, 'hidden': false},{'data': [50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, null, null, null, null, null], 'label': 'SSO (annual aggregation)', 'borderColor': 'rgba(255, 127, 14,0.9)', 'fill': false, 'borderWidth': 2, 'borderDash': [5,5], 'yAxisID': 'y', 'pointRadius': 2, 'hidden': false}] + labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026"], + datasets: [{'data': [null, 49.48979591836735, 46.994535519125684, 64.39393939393939, 39.91416309012876, 51.445086705202314, 45.0, 45.794392523364486, 35.294117647058826, 49.09090909090909, 50.98039215686274, 54.109589041095894, 51.30434782608696, 63.62252663622526, 47.64542936288089, 42.98245614035088, 33.33333333333333, 30.136986301369863, 42.62948207171315, 41.02564102564102, 43.13725490196079, 42.15384615384615, 53.02013422818792, 40.67796610169492, 51.574803149606296, 36.30952380952381, 43.1924882629108, 42.857142857142854, 26.31578947368421, 37.5, 43.575418994413404, 42.64705882352941, 22.857142857142858, 47.19101123595505, 35.78947368421053, 54.30711610486891, 45.07042253521127, 47.74774774774775, 49.333333333333336, 51.70454545454546, 50.0, 44.871794871794876, 49.23076923076923, 33.33333333333333, 20.0, 20.754716981132077, null], 'label': 'CSO – UnTreated', 'borderColor': 'rgba(31, 119, 180,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 2, 'hidden': false},{'data': [50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, null, null, null, null], 'label': 'SSO (annual aggregation)', 'borderColor': 'rgba(255, 127, 14,0.9)', 'fill': false, 'borderWidth': 2, 'borderDash': [5,5], 'yAxisID': 'y', 'pointRadius': 2, 'hidden': false}] }, type: 'line', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_rainfall.html b/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_rainfall.html index 188df54c..5e76b4c9 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_rainfall.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_rainfall.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026"], - datasets: [{'data': [0.0, 10.568458, 6.568397, 31.29309, 34.771, 31.424915, 38.858, 75.5506, 0.31, 101.554, 56.136, 61.837, 17.553, 320.421, 134.207, 135.11487, 13.834, 10.97, 268.872, 290.786388, 66.543, 187.965, 43.4258, 92.108, 48.866, 4.233, 8.293, 3.191, 4.293, 3.074, 100.984456, 7.035001, 12.271, 40.819, 4.33, 178.161, 52.04, 34.023, 3.955, 33.15, 83.760058, 5.389, 5.266, 0.231, 0.041, 24.434, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 115.43801, 86.804743, 228.823562, 127.657209, 101.606736, 144.556502, 213.488031, 16.326984, 125.625929, 169.506236, 99.032919, 196.146284, 657.313609, 454.671492, 385.326532, 77.080442, 32.020342, 420.733223, 531.844639, 33.374218, 465.470891, 200.850498, 205.159667, 137.862211, 32.548632, 144.058285, 38.537364, 7.820447, 22.034333, 128.027319, 38.986264, 46.148421, 151.006551, 24.811117, 385.238487, 34.830104, 173.85852, 52.303642, 163.334928, 138.730634, 52.73788, 38.235412, 3.911468, 4.227829, 102.301629, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 14.889, 18.08, 138.0971, 63.33, 33.16, 211.6397, 302.302, 1.7, 608.08, 159.1951, 119.6757, 84.27, 412.032, 245.088, 215.554, 45.7022, 43.44, 815.5563, 1268.962422, 93.968482, 888.075013, 630.2106, 119.04, 43.689, 34.5576, 71.537063, 15.428172, 4.4, 42.59, 329.0875, 25.1085, 51.82, 129.872273, 50.5703, 603.457475, 38.0952, 94.8393, 25.242, 76.4396, 136.3045, 33.1398, 44.0, 2.218, 0.715, 562.6989, 0.305, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 3.91, 0.39, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 6.54005, 0.45, 0.016676, 85.38, 28.103008, 0.0, 0.0, 0.0117, 999.999999, 176.53, 0.0, 100.0004, 0.0, 0.0, 0.021042, 0.0, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.813515, 0.0, 0.0, 0.0, 0.0095, 0.0, 0.0, 0.0, 0.0, 0.25, 0.2, 0.0, 0.0, 0.0, 0.8418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0001, 0.0005, 0.0, 5e-05, 0.0, 0.825, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91.624, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0295, 1.025, 0.3362, 0.381, 0.0, 0.003925, 0.05, 0.0, 0.02, 0.75, 0.0, 4e-05, 0.0, 0.0, 0.19338, 0.0, 0.0665, 0.0, 0.0, 0.681, 0.0, 0.0, 0.002, 0.0, 0.00146, 0.0, 0.376, 0.005, 0.001, 0.0, 0.0, 0.0, 0.0053, 0.0, 0.0, 0.0, 0.0, 0.005, 0.00055, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.409, 3.436348, 0.001875, 1.735715, 0.0, 0.03, 0.00941, 1.751925, 0.112426, 0.633088, 0.0015, 5e-05, 15.39388, 40.515623, 0.0, 3.237131, 2.056, 0.0, 0.0, 0.0, 0.001966, 0.0025, 0.0, 0.0, 0.0455, 0.0, 0.0, 0.0, 0.0, 0.02975, 0.0, 0.422013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [2.9818134227459927, 2.0044141739855794, 2.616262859020171, 5.391519967019915, 5.2484745340037, 2.9598179364021533, 5.779180619008587, 7.363227050526272, 1.7866738518544103, 4.849953734977428, 3.4717122562994716, 3.7805933744996065, 5.067794818036316, 9.130430254261135, 6.545395945462382, 7.294112346440152, 3.2250284255490778, 2.0697368775326006, 7.039747528667467, 7.743386216709642, 1.63976479610582, 8.848222460150135, 4.321511420210335, 5.232397505000315, 3.262279225213264, 3.195808384780778, 4.376995751961096, 2.446513179597271, 1.120856668494856, 3.0691665466330518, 5.303273367829183, 1.679174448563101, 3.9622473594767085, 4.046446202923702, 4.377958524089519, 7.775284127883787, 2.2851700176416103, 3.057190257313136, 2.9936487997402303, 3.4798802163956166, 5.862367203791788, 2.626839800687645, 3.3508169692593692, 3.2227415320849797, 2.162366428527771, 4.511813427188704, 2.3095070203495287, 1.8701324732027147], 'label': 'Precipitation (48-hr lookback)', 'borderColor': 'rgba(100,150,255,1)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y1', 'pointRadius': 1}] + labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026"], + datasets: [{'data': [0.0, 10.568458, 6.568397, 31.29309, 34.771, 31.424915, 38.858, 75.5506, 0.31, 101.554, 56.136, 61.837, 17.553, 320.421, 134.207, 135.11487, 13.834, 10.97, 268.872, 290.786388, 66.543, 187.965, 43.4258, 92.108, 48.866, 4.233, 8.293, 3.191, 4.293, 3.074, 100.984456, 7.035001, 12.271, 40.819, 4.33, 178.161, 52.04, 34.023, 3.955, 33.15, 83.760058, 5.389, 5.266, 0.231, 0.041, 24.434, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 115.43801, 86.804743, 228.823562, 127.657209, 101.606736, 144.556502, 213.488031, 16.326984, 125.625929, 169.506236, 99.032919, 196.146284, 657.313609, 454.671492, 385.326532, 77.080442, 32.020342, 420.733223, 531.844639, 33.374218, 465.470891, 200.850498, 205.159667, 137.862211, 32.548632, 144.058285, 38.537364, 7.820447, 22.034333, 128.027319, 38.986264, 46.148421, 151.006551, 24.811117, 385.238487, 34.830104, 173.85852, 52.303642, 163.334928, 138.730634, 52.73788, 38.235412, 3.911468, 4.227829, 102.301629, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 14.889, 18.08, 138.0971, 63.33, 33.16, 211.6397, 302.302, 1.7, 608.08, 159.1951, 119.6757, 84.27, 412.032, 245.088, 215.554, 45.7022, 43.44, 815.5563, 1268.962422, 93.968482, 888.075013, 630.2106, 119.04, 43.689, 34.5576, 71.537063, 15.428172, 4.4, 42.59, 329.0875, 25.1085, 51.82, 129.872273, 50.5703, 603.457475, 38.0952, 94.8393, 25.242, 76.4396, 136.3045, 33.1398, 44.0, 2.218, 0.715, 562.6989, 0.305], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 3.91, 0.39, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 6.54005, 0.45, 0.016676, 85.38, 28.103008, 0.0, 0.0, 0.0117, 999.999999, 176.53, 0.0, 100.0004, 0.0, 0.0, 0.021042, 0.0, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.813515, 0.0, 0.0, 0.0, 0.0095, 0.0, 0.0, 0.0, 0.0, 0.25, 0.2, 0.0, 0.0, 0.0, 0.8418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0001, 0.0005, 0.0, 5e-05, 0.0, 0.825, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91.624, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0295, 1.025, 0.3362, 0.381, 0.0, 0.003925, 0.05, 0.0, 0.02, 0.75, 0.0, 4e-05, 0.0, 0.0, 0.19338, 0.0, 0.0665, 0.0, 0.0, 0.681, 0.0, 0.0, 0.002, 0.0, 0.00146, 0.0, 0.376, 0.005, 0.001, 0.0, 0.0, 0.0, 0.0053, 0.0, 0.0, 0.0, 0.0, 0.005, 0.00055, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.409, 3.436348, 0.001875, 1.735715, 0.0, 0.03, 0.00941, 1.751925, 0.112426, 0.633088, 0.0015, 5e-05, 15.39388, 40.515623, 0.0, 3.237131, 2.056, 0.0, 0.0, 0.0, 0.001966, 0.0025, 0.0, 0.0, 0.0455, 0.0, 0.0, 0.0, 0.0, 0.02975, 0.0, 0.422013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [2.9818134227459927, 2.0044141739855794, 2.616262859020171, 5.391519967019915, 5.2484745340037, 2.9598179364021533, 5.779180619008587, 7.363227050526272, 1.7866738518544103, 4.849953734977428, 3.4717122562994716, 3.7805933744996065, 5.067794818036316, 9.130430254261135, 6.545395945462382, 7.294112346440152, 3.2250284255490778, 2.0697368775326006, 7.039747528667467, 7.743386216709642, 1.63976479610582, 8.848222460150135, 4.321511420210335, 5.232397505000315, 3.262279225213264, 3.195808384780778, 4.376995751961096, 2.446513179597271, 1.120856668494856, 3.0691665466330518, 5.303273367829183, 1.679174448563101, 3.9622473594767085, 4.046446202923702, 4.377958524089519, 7.775284127883787, 2.2851700176416103, 3.057190257313136, 2.9936487997402303, 3.4798802163956166, 5.862367203791788, 2.626839800687645, 3.3508169692593692, 3.2227415320849797, 2.158357454105822, 4.5067638926782365, 1.940736580831919], 'label': 'Precipitation (48-hr lookback)', 'borderColor': 'rgba(100,150,255,1)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y1', 'pointRadius': 1}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_watershed.html b/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_watershed.html index 7f05eb10..ea88ccb3 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_watershed.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_watershed.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026"], - datasets: [{'data': [0.0, 21.012536, 2.98, 99.441334, 48.52309, 15.29, 99.753667, 43.547355, 0.0, 131.945165, 103.562555, 48.743, 104.706071, 254.11674, 303.726, 167.03089, 16.92, 33.72, 400.403259, 394.916427, 72.7, 259.809818, 218.86, 38.091016, 10.146027, 22.249939, 74.924999, 0.0, 0.0, 32.29, 60.36, 16.32, 12.68, 61.98, 27.97, 227.972475, 25.013892, 63.15, 21.421231, 27.677035, 56.34, 16.110003, 23.12, 0.0, 0.0, 27.77, 0.0, 0.0], 'label': 'MERRIMACK RIVER', 'borderColor': 'rgba(31, 119, 180,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 84.207179, 26.667781, 108.912498, 42.595317, 66.620093, 33.228533, 65.445273, 1.458854, 16.969248, 71.323042, 50.397643, 27.37741, 197.262015, 38.289998, 172.83486, 11.505254, 13.848729, 117.225635, 160.970099, 7.110798, 105.005303, 14.690449, 31.89229, 72.083143, 8.998231, 15.725801, 0.747424, 0.0, 4.36806, 24.928324, 11.124405, 1.510238, 70.310237, 4.046, 160.330501, 57.226083, 76.075702, 13.720035, 61.916514, 41.040993, 6.843374, 9.407481, 0.0, 0.0, 14.190465, 0.0, 0.0], 'label': 'CONNECTICUT R.', 'borderColor': 'rgba(255, 127, 14,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 17.129943, 66.289, 30.365603, 21.177, 69.13, 112.2056, 1.7, 66.424, 63.81, 42.6323, 31.553, 79.274623, 65.212094, 51.542743, 38.600661, 20.054802, 70.727481, 117.958007, 21.308482, 194.773457, 67.45, 56.68, 21.129, 11.75, 35.262977, 16.613172, 4.48, 11.4, 125.08, 9.426, 32.42, 46.661, 11.478, 107.246, 2.66, 38.53, 21.722, 46.187, 46.492, 19.79, 21.86, 2.408, 0.715, 108.0441, 0.0, 0.0], 'label': 'MOUNT HOPE BAY', 'borderColor': 'rgba(44, 160, 44,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 999.999999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'TEN MILE RIVER', 'borderColor': 'rgba(214, 39, 40,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 5.50697, 16.267, 26.620438, 10.166184, 20.424, 41.1909, 0.218, 24.5151, 29.117, 20.765, 26.752, 69.578759, 44.197063, 67.278069, 23.222398, 5.698492, 31.965554, 62.426144, 5.659, 128.783646, 30.7168, 43.001375, 12.407, 4.824, 15.164398, 14.608326, 4.7958, 3.704, 27.79, 5.279, 17.411, 10.756, 2.187, 27.952, 0.0, 10.9748, 4.313, 22.031, 11.1291, 4.235, 6.586, 0.261, 0.0448, 23.2713, 0.0, 0.0], 'label': 'TAUNTON RIVER', 'borderColor': 'rgba(148, 103, 189,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 362.01, 36.76, 14.84, 0.0, 0.0, 0.0003, 0.0, 0.0, 148.94, 0.0, 9.5, 23.45, 0.18, 249.88, 15.0, 8.18, 0.0, 7.63, 38.98, 0.0, 0.0, 0.0, 0.0, 16.07, 0.0, 0.0], 'label': 'MASSACHUSETTS BAY', 'borderColor': 'rgba(140, 86, 75,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.04, 25.89004, 25.53529, 15.27533, 10.93803, 33.627345, 46.44037, 10.66254, 25.94895, 17.30912, 10.99391, 16.97624, 21.22331, 16.82741, 7.9488, 14.234804, 4.72295, 20.09978, 44.66829, 14.27652, 53.07679, 20.80113, 27.243218, 14.525964, 6.920613, 5.756981, 13.173934, 4.069956, 6.796508, 27.064564, 8.366736, 15.374761, 12.160803, 5.974968, 33.343855, 3.581376, 13.277366, 6.891125, 25.486412, 32.171843, 14.326732, 12.367965, 2.639834, 3.482527, 40.337583, 0.0, 0.0], 'label': 'ACUSHNET RIVER', 'borderColor': 'rgba(227, 119, 194,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.01, 0.0, 14.83, 6.07, 17.6, 14.7, 0.0, 47.99, 0.0, 27.3, 0.0, 117.49, 53.73, 22.6, 0.0, 0.0, 72.59, 78.4, 0.0, 69.29, 14.23, 20.72, 18.56, 0.04, 3.48, 0.0, 0.0, 0.0, 44.63, 0.0, 0.0, 12.07, 0.0, 63.22, 8.73, 0.24, 1.22, 15.47, 22.69, 0.0, 0.0, 0.0, 0.0, 3.23, 0.0, 0.0], 'label': 'CHARLES RIVER', 'borderColor': 'rgba(127, 127, 127,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1}] + labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026"], + datasets: [{'data': [0.0, 21.012536, 2.98, 99.441334, 48.52309, 15.29, 99.753667, 43.547355, 0.0, 131.945165, 103.562555, 48.743, 104.706071, 254.11674, 303.726, 167.03089, 16.92, 33.72, 400.403259, 394.916427, 72.7, 259.809818, 218.86, 38.091016, 10.146027, 22.249939, 74.924999, 0.0, 0.0, 32.29, 60.36, 16.32, 12.68, 61.98, 27.97, 227.972475, 25.013892, 63.15, 21.421231, 27.677035, 56.34, 16.110003, 23.12, 0.0, 0.0, 27.77, 0.0], 'label': 'MERRIMACK RIVER', 'borderColor': 'rgba(31, 119, 180,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 84.207179, 26.667781, 108.912498, 42.595317, 66.620093, 33.228533, 65.445273, 1.458854, 16.969248, 71.323042, 50.397643, 27.37741, 197.262015, 38.289998, 172.83486, 11.505254, 13.848729, 117.225635, 160.970099, 7.110798, 105.005303, 14.690449, 31.89229, 72.083143, 8.998231, 15.725801, 0.747424, 0.0, 4.36806, 24.928324, 11.124405, 1.510238, 70.310237, 4.046, 160.330501, 57.226083, 76.075702, 13.720035, 61.916514, 41.040993, 6.843374, 9.407481, 0.0, 0.0, 14.190465, 0.0], 'label': 'CONNECTICUT R.', 'borderColor': 'rgba(255, 127, 14,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 17.129943, 66.289, 30.365603, 21.177, 69.13, 112.2056, 1.7, 66.424, 63.81, 42.6323, 31.553, 79.274623, 65.212094, 51.542743, 38.600661, 20.054802, 70.727481, 117.958007, 21.308482, 194.773457, 67.45, 56.68, 21.129, 11.75, 35.262977, 16.613172, 4.48, 11.4, 125.08, 9.426, 32.42, 46.661, 11.478, 107.246, 2.66, 38.53, 21.722, 46.187, 46.492, 19.79, 21.86, 2.408, 0.715, 108.0441, 0.0], 'label': 'MOUNT HOPE BAY', 'borderColor': 'rgba(44, 160, 44,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 999.999999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'TEN MILE RIVER', 'borderColor': 'rgba(214, 39, 40,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 5.50697, 16.267, 26.620438, 10.166184, 20.424, 41.1909, 0.218, 24.5151, 29.117, 20.765, 26.752, 69.578759, 44.197063, 67.278069, 23.222398, 5.698492, 31.965554, 62.426144, 5.659, 128.783646, 30.7168, 43.001375, 12.407, 4.824, 15.164398, 14.608326, 4.7958, 3.704, 27.79, 5.279, 17.411, 10.756, 2.187, 27.952, 0.0, 10.9748, 4.313, 22.031, 11.1291, 4.235, 6.586, 0.261, 0.0448, 23.2713, 0.0], 'label': 'TAUNTON RIVER', 'borderColor': 'rgba(148, 103, 189,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 362.01, 36.76, 14.84, 0.0, 0.0, 0.0003, 0.0, 0.0, 148.94, 0.0, 9.5, 23.45, 0.18, 249.88, 15.0, 8.18, 0.0, 7.63, 38.98, 0.0, 0.0, 0.0, 0.0, 16.07, 0.0], 'label': 'MASSACHUSETTS BAY', 'borderColor': 'rgba(140, 86, 75,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.04, 25.89004, 25.53529, 15.27533, 10.93803, 33.627345, 46.44037, 10.66254, 25.94895, 17.30912, 10.99391, 16.97624, 21.22331, 16.82741, 7.9488, 14.234804, 4.72295, 20.09978, 44.66829, 14.27652, 53.07679, 20.80113, 27.243218, 14.525964, 6.920613, 5.756981, 13.173934, 4.069956, 6.796508, 27.064564, 8.366736, 15.374761, 12.160803, 5.974968, 33.343855, 3.581376, 13.277366, 6.891125, 25.486412, 32.171843, 14.326732, 12.367965, 2.639834, 3.482527, 40.337583, 0.0], 'label': 'ACUSHNET RIVER', 'borderColor': 'rgba(227, 119, 194,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.01, 0.0, 14.83, 6.07, 17.6, 14.7, 0.0, 47.99, 0.0, 27.3, 0.0, 117.49, 53.73, 22.6, 0.0, 0.0, 72.59, 78.4, 0.0, 69.29, 14.23, 20.72, 18.56, 0.04, 3.48, 0.0, 0.0, 0.0, 44.63, 0.0, 0.0, 12.07, 0.0, 63.22, 8.73, 0.24, 1.22, 15.47, 22.69, 0.0, 0.0, 0.0, 0.0, 3.23, 0.0], 'label': 'CHARLES RIVER', 'borderColor': 'rgba(127, 127, 127,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1}] }, type: 'line', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_cdf.html b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_cdf.html index a91a4f9c..180a32e3 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_cdf.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_cdf.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.0, y: 2.4154589371980677}, {x: 0.025, y: 34.989648033126294}, {x: 0.05, y: 43.064182194616976}, {x: 0.07500000000000001, y: 49.13733609385783}, {x: 0.1, y: 53.14009661835749}, {x: 0.125, y: 55.96963423050379}, {x: 0.15000000000000002, y: 58.93719806763285}, {x: 0.17500000000000002, y: 60.73153899240856}, {x: 0.2, y: 64.04416839199449}, {x: 0.225, y: 66.11456176673568}, {x: 0.25, y: 67.6328502415459}, {x: 0.275, y: 69.28916494133885}, {x: 0.30000000000000004, y: 70.53140096618358}, {x: 0.325, y: 72.11870255348516}, {x: 0.35000000000000003, y: 73.70600414078675}, {x: 0.375, y: 75.22429261559697}, {x: 0.4, y: 76.05244996549344}, {x: 0.42500000000000004, y: 77.01863354037268}, {x: 0.45, y: 78.67494824016563}, {x: 0.47500000000000003, y: 79.98619737750172}, {x: 0.5, y: 81.36645962732919}, {x: 0.525, y: 82.47066942719117}, {x: 0.55, y: 83.09178743961353}, {x: 0.5750000000000001, y: 83.85093167701864}, {x: 0.6000000000000001, y: 84.26501035196688}, {x: 0.625, y: 84.9551414768806}, {x: 0.65, y: 85.78329882677708}, {x: 0.675, y: 86.61145617667356}, {x: 0.7000000000000001, y: 87.02553485162181}, {x: 0.7250000000000001, y: 87.85369220151829}, {x: 0.75, y: 88.12974465148378}, {x: 0.775, y: 88.47481021394064}, {x: 0.8, y: 89.16494133885439}, {x: 0.8250000000000001, y: 89.71704623878537}, {x: 0.8500000000000001, y: 90.47619047619048}, {x: 0.875, y: 91.23533471359558}, {x: 0.9, y: 91.51138716356108}, {x: 0.925, y: 92.20151828847482}, {x: 0.9500000000000001, y: 92.40855762594893}, {x: 0.9750000000000001, y: 92.89164941338855}, {x: 1.0, y: 93.16770186335404}, {x: 1.0250000000000001, y: 93.37474120082815}, {x: 1.05, y: 93.71980676328504}, {x: 1.075, y: 94.13388543823326}, {x: 1.1, y: 94.27191166321602}, {x: 1.125, y: 94.40993788819875}, {x: 1.1500000000000001, y: 94.68599033816425}, {x: 1.175, y: 94.75500345065562}, {x: 1.2000000000000002, y: 94.96204278812974}, {x: 1.225, y: 95.16908212560386}, {x: 1.25, y: 95.51414768806073}, {x: 1.2750000000000001, y: 95.8592132505176}, {x: 1.3, y: 95.92822636300897}, {x: 1.3250000000000002, y: 95.99723947550034}, {x: 1.35, y: 96.1352657004831}, {x: 1.375, y: 96.54934437543133}, {x: 1.4000000000000001, y: 96.96342305037957}, {x: 1.425, y: 97.17046238785369}, {x: 1.4500000000000002, y: 97.3775017253278}, {x: 1.475, y: 97.51552795031056}, {x: 1.5, y: 97.51552795031056}, {x: 1.5250000000000001, y: 97.51552795031056}, {x: 1.55, y: 97.58454106280193}, {x: 1.5750000000000002, y: 97.65355417529331}, {x: 1.6, y: 97.79158040027606}, {x: 1.625, y: 97.79158040027606}, {x: 1.6500000000000001, y: 98.06763285024155}, {x: 1.675, y: 98.13664596273291}, {x: 1.7000000000000002, y: 98.13664596273291}, {x: 1.725, y: 98.27467218771567}, {x: 1.75, y: 98.4126984126984}, {x: 1.7750000000000001, y: 98.61973775017253}, {x: 1.8, y: 98.68875086266391}, {x: 1.8250000000000002, y: 98.75776397515527}, {x: 1.85, y: 98.89579020013802}, {x: 1.875, y: 98.89579020013802}, {x: 1.9000000000000001, y: 98.9648033126294}, {x: 1.925, y: 99.10282953761215}, {x: 1.9500000000000002, y: 99.10282953761215}, {x: 1.975, y: 99.10282953761215}, {x: 2.0, y: 99.10282953761215}, {x: 2.025, y: 99.10282953761215}, {x: 2.0500000000000003, y: 99.10282953761215}, {x: 2.075, y: 99.24085576259489}, {x: 2.1, y: 99.30986887508627}, {x: 2.125, y: 99.30986887508627}, {x: 2.15, y: 99.30986887508627}, {x: 2.1750000000000003, y: 99.30986887508627}, {x: 2.2, y: 99.37888198757764}, {x: 2.225, y: 99.44789510006902}, {x: 2.25, y: 99.44789510006902}, {x: 2.275, y: 99.44789510006902}, {x: 2.3000000000000003, y: 99.44789510006902}, {x: 2.325, y: 99.44789510006902}, {x: 2.35, y: 99.51690821256038}, {x: 2.375, y: 99.58592132505176}, {x: 2.4000000000000004, y: 99.58592132505176}, {x: 2.4250000000000003, y: 99.65493443754313}, {x: 2.45, y: 99.72394755003451}, {x: 2.475, y: 99.72394755003451}, {x: 2.5, y: 99.79296066252587}, {x: 2.5250000000000004, y: 99.86197377501725}, {x: 2.5500000000000003, y: 99.86197377501725}, {x: 2.575, y: 99.93098688750862}, {x: 2.6, y: 99.93098688750862}, {x: 2.625, y: 99.93098688750862}, {x: 2.6500000000000004, y: 99.93098688750862}, {x: 2.6750000000000003, y: 99.93098688750862}, {x: 2.7, y: 99.93098688750862}, {x: 2.725, y: 99.93098688750862}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'All days (rainfall distribution)', 'showLine': true, 'borderColor': 'rgba(80,80,80,0.7)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderDash': [6, 4], 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.0348837209302326}, {x: 0.025, y: 29.651162790697676}, {x: 0.05, y: 40.406976744186046}, {x: 0.07500000000000001, y: 46.80232558139535}, {x: 0.1, y: 50.58139534883721}, {x: 0.125, y: 53.48837209302325}, {x: 0.15000000000000002, y: 56.68604651162791}, {x: 0.17500000000000002, y: 58.43023255813954}, {x: 0.2, y: 62.5}, {x: 0.225, y: 65.69767441860465}, {x: 0.25, y: 67.44186046511628}, {x: 0.275, y: 68.8953488372093}, {x: 0.30000000000000004, y: 70.05813953488372}, {x: 0.325, y: 71.22093023255815}, {x: 0.35000000000000003, y: 72.67441860465115}, {x: 0.375, y: 74.4186046511628}, {x: 0.4, y: 75.29069767441861}, {x: 0.42500000000000004, y: 76.74418604651163}, {x: 0.45, y: 79.06976744186046}, {x: 0.47500000000000003, y: 81.1046511627907}, {x: 0.5, y: 82.26744186046511}, {x: 0.525, y: 83.72093023255815}, {x: 0.55, y: 84.01162790697676}, {x: 0.5750000000000001, y: 84.88372093023256}, {x: 0.6000000000000001, y: 85.17441860465115}, {x: 0.625, y: 85.17441860465115}, {x: 0.65, y: 86.04651162790698}, {x: 0.675, y: 87.20930232558139}, {x: 0.7000000000000001, y: 87.20930232558139}, {x: 0.7250000000000001, y: 87.5}, {x: 0.75, y: 87.79069767441861}, {x: 0.775, y: 88.66279069767442}, {x: 0.8, y: 89.82558139534885}, {x: 0.8250000000000001, y: 90.40697674418605}, {x: 0.8500000000000001, y: 91.27906976744185}, {x: 0.875, y: 92.44186046511628}, {x: 0.9, y: 92.44186046511628}, {x: 0.925, y: 93.31395348837209}, {x: 0.9500000000000001, y: 93.31395348837209}, {x: 0.9750000000000001, y: 93.6046511627907}, {x: 1.0, y: 93.6046511627907}, {x: 1.0250000000000001, y: 93.6046511627907}, {x: 1.05, y: 94.18604651162791}, {x: 1.075, y: 94.47674418604652}, {x: 1.1, y: 94.47674418604652}, {x: 1.125, y: 94.76744186046511}, {x: 1.1500000000000001, y: 94.76744186046511}, {x: 1.175, y: 94.76744186046511}, {x: 1.2000000000000002, y: 95.34883720930233}, {x: 1.225, y: 95.34883720930233}, {x: 1.25, y: 95.63953488372093}, {x: 1.2750000000000001, y: 95.63953488372093}, {x: 1.3, y: 95.63953488372093}, {x: 1.3250000000000002, y: 95.63953488372093}, {x: 1.35, y: 95.93023255813954}, {x: 1.375, y: 96.51162790697676}, {x: 1.4000000000000001, y: 97.09302325581395}, {x: 1.425, y: 97.67441860465115}, {x: 1.4500000000000002, y: 97.67441860465115}, {x: 1.475, y: 97.96511627906976}, {x: 1.5, y: 97.96511627906976}, {x: 1.5250000000000001, y: 97.96511627906976}, {x: 1.55, y: 98.25581395348837}, {x: 1.5750000000000002, y: 98.25581395348837}, {x: 1.6, y: 98.54651162790698}, {x: 1.625, y: 98.54651162790698}, {x: 1.6500000000000001, y: 99.12790697674419}, {x: 1.675, y: 99.12790697674419}, {x: 1.7000000000000002, y: 99.12790697674419}, {x: 1.725, y: 99.12790697674419}, {x: 1.75, y: 99.12790697674419}, {x: 1.7750000000000001, y: 99.12790697674419}, {x: 1.8, y: 99.12790697674419}, {x: 1.8250000000000002, y: 99.12790697674419}, {x: 1.85, y: 99.4186046511628}, {x: 1.875, y: 99.4186046511628}, {x: 1.9000000000000001, y: 99.4186046511628}, {x: 1.925, y: 99.4186046511628}, {x: 1.9500000000000002, y: 99.4186046511628}, {x: 1.975, y: 99.4186046511628}, {x: 2.0, y: 99.4186046511628}, {x: 2.025, y: 99.4186046511628}, {x: 2.0500000000000003, y: 99.4186046511628}, {x: 2.075, y: 99.70930232558139}, {x: 2.1, y: 99.70930232558139}, {x: 2.125, y: 99.70930232558139}, {x: 2.15, y: 99.70930232558139}, {x: 2.1750000000000003, y: 99.70930232558139}, {x: 2.2, y: 99.70930232558139}, {x: 2.225, y: 99.70930232558139}, {x: 2.25, y: 99.70930232558139}, {x: 2.275, y: 99.70930232558139}, {x: 2.3000000000000003, y: 99.70930232558139}, {x: 2.325, y: 99.70930232558139}, {x: 2.35, y: 99.70930232558139}, {x: 2.375, y: 99.70930232558139}, {x: 2.4000000000000004, y: 99.70930232558139}, {x: 2.4250000000000003, y: 99.70930232558139}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'CSO – Untreated', 'showLine': true, 'borderColor': 'rgba(31, 119, 180,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.5}, {x: 0.025, y: 29.375}, {x: 0.05, y: 38.75}, {x: 0.07500000000000001, y: 43.75}, {x: 0.1, y: 49.375}, {x: 0.125, y: 53.125}, {x: 0.15000000000000002, y: 55.625}, {x: 0.17500000000000002, y: 58.12500000000001}, {x: 0.2, y: 59.375}, {x: 0.225, y: 63.125}, {x: 0.25, y: 66.25}, {x: 0.275, y: 67.5}, {x: 0.30000000000000004, y: 67.5}, {x: 0.325, y: 69.375}, {x: 0.35000000000000003, y: 71.25}, {x: 0.375, y: 72.5}, {x: 0.4, y: 72.5}, {x: 0.42500000000000004, y: 75.625}, {x: 0.45, y: 80.0}, {x: 0.47500000000000003, y: 83.125}, {x: 0.5, y: 83.75}, {x: 0.525, y: 85.0}, {x: 0.55, y: 85.0}, {x: 0.5750000000000001, y: 85.625}, {x: 0.6000000000000001, y: 85.625}, {x: 0.625, y: 85.625}, {x: 0.65, y: 86.875}, {x: 0.675, y: 88.125}, {x: 0.7000000000000001, y: 88.125}, {x: 0.7250000000000001, y: 88.75}, {x: 0.75, y: 88.75}, {x: 0.775, y: 89.375}, {x: 0.8, y: 90.0}, {x: 0.8250000000000001, y: 91.25}, {x: 0.8500000000000001, y: 92.5}, {x: 0.875, y: 92.5}, {x: 0.9, y: 92.5}, {x: 0.925, y: 93.75}, {x: 0.9500000000000001, y: 93.75}, {x: 0.9750000000000001, y: 94.375}, {x: 1.0, y: 94.375}, {x: 1.0250000000000001, y: 94.375}, {x: 1.05, y: 94.375}, {x: 1.075, y: 95.0}, {x: 1.1, y: 95.0}, {x: 1.125, y: 95.625}, {x: 1.1500000000000001, y: 95.625}, {x: 1.175, y: 95.625}, {x: 1.2000000000000002, y: 96.875}, {x: 1.225, y: 96.875}, {x: 1.25, y: 96.875}, {x: 1.2750000000000001, y: 96.875}, {x: 1.3, y: 96.875}, {x: 1.3250000000000002, y: 96.875}, {x: 1.35, y: 96.875}, {x: 1.375, y: 97.5}, {x: 1.4000000000000001, y: 97.5}, {x: 1.425, y: 98.125}, {x: 1.4500000000000002, y: 98.125}, {x: 1.475, y: 98.125}, {x: 1.5, y: 98.125}, {x: 1.5250000000000001, y: 98.125}, {x: 1.55, y: 98.125}, {x: 1.5750000000000002, y: 98.125}, {x: 1.6, y: 98.125}, {x: 1.625, y: 98.125}, {x: 1.6500000000000001, y: 98.75}, {x: 1.675, y: 98.75}, {x: 1.7000000000000002, y: 98.75}, {x: 1.725, y: 98.75}, {x: 1.75, y: 98.75}, {x: 1.7750000000000001, y: 98.75}, {x: 1.8, y: 98.75}, {x: 1.8250000000000002, y: 98.75}, {x: 1.85, y: 99.375}, {x: 1.875, y: 99.375}, {x: 1.9000000000000001, y: 99.375}, {x: 1.925, y: 99.375}, {x: 1.9500000000000002, y: 99.375}, {x: 1.975, y: 99.375}, {x: 2.0, y: 99.375}, {x: 2.025, y: 99.375}, {x: 2.0500000000000003, y: 99.375}, {x: 2.075, y: 100.0}, {x: 2.1, y: 100.0}, {x: 2.125, y: 100.0}, {x: 2.15, y: 100.0}, {x: 2.1750000000000003, y: 100.0}, {x: 2.2, y: 100.0}, {x: 2.225, y: 100.0}, {x: 2.25, y: 100.0}, {x: 2.275, y: 100.0}, {x: 2.3000000000000003, y: 100.0}, {x: 2.325, y: 100.0}, {x: 2.35, y: 100.0}, {x: 2.375, y: 100.0}, {x: 2.4000000000000004, y: 100.0}, {x: 2.4250000000000003, y: 100.0}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'CSO – Treated', 'showLine': true, 'borderColor': 'rgba(255, 127, 14,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.941176470588235}, {x: 0.025, y: 32.94117647058823}, {x: 0.05, y: 40.588235294117645}, {x: 0.07500000000000001, y: 45.294117647058826}, {x: 0.1, y: 50.0}, {x: 0.125, y: 52.352941176470594}, {x: 0.15000000000000002, y: 54.11764705882353}, {x: 0.17500000000000002, y: 55.88235294117647}, {x: 0.2, y: 57.647058823529406}, {x: 0.225, y: 61.1764705882353}, {x: 0.25, y: 64.11764705882354}, {x: 0.275, y: 66.47058823529412}, {x: 0.30000000000000004, y: 67.64705882352942}, {x: 0.325, y: 69.41176470588235}, {x: 0.35000000000000003, y: 71.17647058823529}, {x: 0.375, y: 73.52941176470588}, {x: 0.4, y: 74.11764705882354}, {x: 0.42500000000000004, y: 75.88235294117646}, {x: 0.45, y: 78.82352941176471}, {x: 0.47500000000000003, y: 81.76470588235294}, {x: 0.5, y: 82.35294117647058}, {x: 0.525, y: 83.52941176470588}, {x: 0.55, y: 83.52941176470588}, {x: 0.5750000000000001, y: 84.11764705882354}, {x: 0.6000000000000001, y: 84.70588235294117}, {x: 0.625, y: 85.29411764705883}, {x: 0.65, y: 86.47058823529412}, {x: 0.675, y: 87.6470588235294}, {x: 0.7000000000000001, y: 87.6470588235294}, {x: 0.7250000000000001, y: 88.23529411764706}, {x: 0.75, y: 88.23529411764706}, {x: 0.775, y: 88.8235294117647}, {x: 0.8, y: 88.8235294117647}, {x: 0.8250000000000001, y: 89.41176470588236}, {x: 0.8500000000000001, y: 90.58823529411765}, {x: 0.875, y: 91.17647058823529}, {x: 0.9, y: 91.76470588235294}, {x: 0.925, y: 91.76470588235294}, {x: 0.9500000000000001, y: 91.76470588235294}, {x: 0.9750000000000001, y: 92.3529411764706}, {x: 1.0, y: 92.3529411764706}, {x: 1.0250000000000001, y: 92.3529411764706}, {x: 1.05, y: 92.3529411764706}, {x: 1.075, y: 92.94117647058823}, {x: 1.1, y: 92.94117647058823}, {x: 1.125, y: 92.94117647058823}, {x: 1.1500000000000001, y: 92.94117647058823}, {x: 1.175, y: 92.94117647058823}, {x: 1.2000000000000002, y: 93.52941176470588}, {x: 1.225, y: 93.52941176470588}, {x: 1.25, y: 94.70588235294117}, {x: 1.2750000000000001, y: 95.29411764705881}, {x: 1.3, y: 95.29411764705881}, {x: 1.3250000000000002, y: 95.29411764705881}, {x: 1.35, y: 95.29411764705881}, {x: 1.375, y: 95.88235294117648}, {x: 1.4000000000000001, y: 95.88235294117648}, {x: 1.425, y: 96.47058823529412}, {x: 1.4500000000000002, y: 96.47058823529412}, {x: 1.475, y: 97.05882352941177}, {x: 1.5, y: 97.05882352941177}, {x: 1.5250000000000001, y: 97.05882352941177}, {x: 1.55, y: 97.05882352941177}, {x: 1.5750000000000002, y: 97.05882352941177}, {x: 1.6, y: 97.05882352941177}, {x: 1.625, y: 97.05882352941177}, {x: 1.6500000000000001, y: 97.6470588235294}, {x: 1.675, y: 97.6470588235294}, {x: 1.7000000000000002, y: 97.6470588235294}, {x: 1.725, y: 97.6470588235294}, {x: 1.75, y: 97.6470588235294}, {x: 1.7750000000000001, y: 97.6470588235294}, {x: 1.8, y: 97.6470588235294}, {x: 1.8250000000000002, y: 97.6470588235294}, {x: 1.85, y: 98.23529411764706}, {x: 1.875, y: 98.23529411764706}, {x: 1.9000000000000001, y: 98.23529411764706}, {x: 1.925, y: 98.23529411764706}, {x: 1.9500000000000002, y: 98.23529411764706}, {x: 1.975, y: 98.23529411764706}, {x: 2.0, y: 98.23529411764706}, {x: 2.025, y: 98.23529411764706}, {x: 2.0500000000000003, y: 98.23529411764706}, {x: 2.075, y: 98.82352941176471}, {x: 2.1, y: 98.82352941176471}, {x: 2.125, y: 98.82352941176471}, {x: 2.15, y: 98.82352941176471}, {x: 2.1750000000000003, y: 98.82352941176471}, {x: 2.2, y: 98.82352941176471}, {x: 2.225, y: 98.82352941176471}, {x: 2.25, y: 98.82352941176471}, {x: 2.275, y: 98.82352941176471}, {x: 2.3000000000000003, y: 98.82352941176471}, {x: 2.325, y: 98.82352941176471}, {x: 2.35, y: 98.82352941176471}, {x: 2.375, y: 98.82352941176471}, {x: 2.4000000000000004, y: 98.82352941176471}, {x: 2.4250000000000003, y: 98.82352941176471}, {x: 2.45, y: 98.82352941176471}, {x: 2.475, y: 98.82352941176471}, {x: 2.5, y: 98.82352941176471}, {x: 2.5250000000000004, y: 99.41176470588235}, {x: 2.5500000000000003, y: 99.41176470588235}, {x: 2.575, y: 99.41176470588235}, {x: 2.6, y: 99.41176470588235}, {x: 2.625, y: 99.41176470588235}, {x: 2.6500000000000004, y: 99.41176470588235}, {x: 2.6750000000000003, y: 99.41176470588235}, {x: 2.7, y: 99.41176470588235}, {x: 2.725, y: 99.41176470588235}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'Partially Treated', 'showLine': true, 'borderColor': 'rgba(44, 160, 44,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 0.0}, {x: 0.025, y: 9.090909090909092}, {x: 0.05, y: 18.181818181818183}, {x: 0.07500000000000001, y: 22.727272727272727}, {x: 0.1, y: 29.545454545454547}, {x: 0.125, y: 31.818181818181817}, {x: 0.15000000000000002, y: 31.818181818181817}, {x: 0.17500000000000002, y: 31.818181818181817}, {x: 0.2, y: 36.36363636363637}, {x: 0.225, y: 38.63636363636363}, {x: 0.25, y: 40.909090909090914}, {x: 0.275, y: 40.909090909090914}, {x: 0.30000000000000004, y: 43.18181818181818}, {x: 0.325, y: 43.18181818181818}, {x: 0.35000000000000003, y: 47.72727272727273}, {x: 0.375, y: 52.27272727272727}, {x: 0.4, y: 52.27272727272727}, {x: 0.42500000000000004, y: 56.81818181818182}, {x: 0.45, y: 59.09090909090909}, {x: 0.47500000000000003, y: 61.36363636363637}, {x: 0.5, y: 61.36363636363637}, {x: 0.525, y: 63.63636363636363}, {x: 0.55, y: 65.9090909090909}, {x: 0.5750000000000001, y: 70.45454545454545}, {x: 0.6000000000000001, y: 70.45454545454545}, {x: 0.625, y: 70.45454545454545}, {x: 0.65, y: 75.0}, {x: 0.675, y: 75.0}, {x: 0.7000000000000001, y: 75.0}, {x: 0.7250000000000001, y: 75.0}, {x: 0.75, y: 75.0}, {x: 0.775, y: 75.0}, {x: 0.8, y: 77.27272727272727}, {x: 0.8250000000000001, y: 79.54545454545455}, {x: 0.8500000000000001, y: 79.54545454545455}, {x: 0.875, y: 79.54545454545455}, {x: 0.9, y: 79.54545454545455}, {x: 0.925, y: 79.54545454545455}, {x: 0.9500000000000001, y: 79.54545454545455}, {x: 0.9750000000000001, y: 81.81818181818183}, {x: 1.0, y: 81.81818181818183}, {x: 1.0250000000000001, y: 81.81818181818183}, {x: 1.05, y: 81.81818181818183}, {x: 1.075, y: 81.81818181818183}, {x: 1.1, y: 81.81818181818183}, {x: 1.125, y: 81.81818181818183}, {x: 1.1500000000000001, y: 81.81818181818183}, {x: 1.175, y: 84.0909090909091}, {x: 1.2000000000000002, y: 84.0909090909091}, {x: 1.225, y: 84.0909090909091}, {x: 1.25, y: 84.0909090909091}, {x: 1.2750000000000001, y: 84.0909090909091}, {x: 1.3, y: 84.0909090909091}, {x: 1.3250000000000002, y: 84.0909090909091}, {x: 1.35, y: 84.0909090909091}, {x: 1.375, y: 88.63636363636364}, {x: 1.4000000000000001, y: 90.9090909090909}, {x: 1.425, y: 90.9090909090909}, {x: 1.4500000000000002, y: 93.18181818181817}, {x: 1.475, y: 93.18181818181817}, {x: 1.5, y: 93.18181818181817}, {x: 1.5250000000000001, y: 93.18181818181817}, {x: 1.55, y: 95.45454545454545}, {x: 1.5750000000000002, y: 95.45454545454545}, {x: 1.6, y: 95.45454545454545}, {x: 1.625, y: 95.45454545454545}, {x: 1.6500000000000001, y: 97.72727272727273}, {x: 1.675, y: 97.72727272727273}, {x: 1.7000000000000002, y: 97.72727272727273}, {x: 1.725, y: 97.72727272727273}, {x: 1.75, y: 97.72727272727273}, {x: 1.7750000000000001, y: 100.0}, {x: 1.8, y: 100.0}, {x: 1.8250000000000002, y: 100.0}, {x: 1.85, y: 100.0}, {x: 1.875, y: 100.0}, {x: 1.9000000000000001, y: 100.0}, {x: 1.925, y: 100.0}, {x: 1.9500000000000002, y: 100.0}, {x: 1.975, y: 100.0}, {x: 2.0, y: 100.0}, {x: 2.025, y: 100.0}, {x: 2.0500000000000003, y: 100.0}, {x: 2.075, y: 100.0}, {x: 2.1, y: 100.0}, {x: 2.125, y: 100.0}, {x: 2.15, y: 100.0}, {x: 2.1750000000000003, y: 100.0}, {x: 2.2, y: 100.0}, {x: 2.225, y: 100.0}, {x: 2.25, y: 100.0}, {x: 2.275, y: 100.0}, {x: 2.3000000000000003, y: 100.0}, {x: 2.325, y: 100.0}, {x: 2.35, y: 100.0}, {x: 2.375, y: 100.0}, {x: 2.4000000000000004, y: 100.0}, {x: 2.4250000000000003, y: 100.0}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'SSO', 'showLine': true, 'borderColor': 'rgba(214, 39, 40,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false}] + datasets: [{'data': [{x: 0.0, y: 2.4630541871921183}, {x: 0.025, y: 35.045742434904994}, {x: 0.05, y: 43.06826178747361}, {x: 0.07500000000000001, y: 49.19071076706545}, {x: 0.1, y: 53.20197044334976}, {x: 0.125, y: 56.01688951442646}, {x: 0.15000000000000002, y: 58.972554539057}, {x: 0.17500000000000002, y: 60.66150598170302}, {x: 0.2, y: 64.109781843772}, {x: 0.225, y: 66.00985221674877}, {x: 0.25, y: 67.48768472906403}, {x: 0.275, y: 69.10626319493315}, {x: 0.30000000000000004, y: 70.37297677691767}, {x: 0.325, y: 71.99155524278676}, {x: 0.35000000000000003, y: 73.46938775510205}, {x: 0.375, y: 75.01759324419423}, {x: 0.4, y: 75.86206896551724}, {x: 0.42500000000000004, y: 76.84729064039408}, {x: 0.45, y: 78.4658691062632}, {x: 0.47500000000000003, y: 79.6622097114708}, {x: 0.5, y: 81.06966924700914}, {x: 0.525, y: 82.19563687543983}, {x: 0.55, y: 82.75862068965517}, {x: 0.5750000000000001, y: 83.53272343420126}, {x: 0.6000000000000001, y: 83.95496129486277}, {x: 0.625, y: 84.65869106263196}, {x: 0.65, y: 85.50316678395497}, {x: 0.675, y: 86.34764250527797}, {x: 0.7000000000000001, y: 86.76988036593947}, {x: 0.7250000000000001, y: 87.6143560872625}, {x: 0.75, y: 87.89584799437016}, {x: 0.775, y: 88.24771287825475}, {x: 0.8, y: 88.95144264602392}, {x: 0.8250000000000001, y: 89.51442646023928}, {x: 0.8500000000000001, y: 90.28852920478536}, {x: 0.875, y: 91.06263194933145}, {x: 0.9, y: 91.34412385643913}, {x: 0.925, y: 92.04785362420832}, {x: 0.9500000000000001, y: 92.25897255453906}, {x: 0.9750000000000001, y: 92.75158339197748}, {x: 1.0, y: 93.03307529908516}, {x: 1.0250000000000001, y: 93.2441942294159}, {x: 1.05, y: 93.59605911330048}, {x: 1.075, y: 94.018296973962}, {x: 1.1, y: 94.15904292751584}, {x: 1.125, y: 94.29978888106967}, {x: 1.1500000000000001, y: 94.58128078817734}, {x: 1.175, y: 94.65165376495426}, {x: 1.2000000000000002, y: 94.86277269528502}, {x: 1.225, y: 95.07389162561576}, {x: 1.25, y: 95.42575650950035}, {x: 1.2750000000000001, y: 95.77762139338493}, {x: 1.3, y: 95.84799437016186}, {x: 1.3250000000000002, y: 95.91836734693877}, {x: 1.35, y: 96.05911330049261}, {x: 1.375, y: 96.48135116115412}, {x: 1.4000000000000001, y: 96.90358902181563}, {x: 1.425, y: 97.11470795214638}, {x: 1.4500000000000002, y: 97.32582688247713}, {x: 1.475, y: 97.46657283603096}, {x: 1.5, y: 97.46657283603096}, {x: 1.5250000000000001, y: 97.46657283603096}, {x: 1.55, y: 97.53694581280789}, {x: 1.5750000000000002, y: 97.6073187895848}, {x: 1.6, y: 97.74806474313863}, {x: 1.625, y: 97.74806474313863}, {x: 1.6500000000000001, y: 98.0295566502463}, {x: 1.675, y: 98.09992962702322}, {x: 1.7000000000000002, y: 98.09992962702322}, {x: 1.725, y: 98.24067558057706}, {x: 1.75, y: 98.3814215341309}, {x: 1.7750000000000001, y: 98.59254046446165}, {x: 1.8, y: 98.66291344123856}, {x: 1.8250000000000002, y: 98.73328641801548}, {x: 1.85, y: 98.87403237156931}, {x: 1.875, y: 98.87403237156931}, {x: 1.9000000000000001, y: 98.94440534834624}, {x: 1.925, y: 99.08515130190007}, {x: 1.9500000000000002, y: 99.08515130190007}, {x: 1.975, y: 99.08515130190007}, {x: 2.0, y: 99.08515130190007}, {x: 2.025, y: 99.08515130190007}, {x: 2.0500000000000003, y: 99.08515130190007}, {x: 2.075, y: 99.22589725545392}, {x: 2.1, y: 99.29627023223082}, {x: 2.125, y: 99.29627023223082}, {x: 2.15, y: 99.29627023223082}, {x: 2.1750000000000003, y: 99.29627023223082}, {x: 2.2, y: 99.36664320900775}, {x: 2.225, y: 99.43701618578466}, {x: 2.25, y: 99.43701618578466}, {x: 2.275, y: 99.43701618578466}, {x: 2.3000000000000003, y: 99.43701618578466}, {x: 2.325, y: 99.43701618578466}, {x: 2.35, y: 99.50738916256158}, {x: 2.375, y: 99.5777621393385}, {x: 2.4000000000000004, y: 99.5777621393385}, {x: 2.4250000000000003, y: 99.64813511611541}, {x: 2.45, y: 99.71850809289234}, {x: 2.475, y: 99.71850809289234}, {x: 2.5, y: 99.78888106966924}, {x: 2.5250000000000004, y: 99.85925404644617}, {x: 2.5500000000000003, y: 99.85925404644617}, {x: 2.575, y: 99.92962702322308}, {x: 2.6, y: 99.92962702322308}, {x: 2.625, y: 99.92962702322308}, {x: 2.6500000000000004, y: 99.92962702322308}, {x: 2.6750000000000003, y: 99.92962702322308}, {x: 2.7, y: 99.92962702322308}, {x: 2.725, y: 99.92962702322308}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'All days (rainfall distribution)', 'showLine': true, 'borderColor': 'rgba(80,80,80,0.7)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderDash': [6, 4], 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.0348837209302326}, {x: 0.025, y: 29.651162790697676}, {x: 0.05, y: 40.406976744186046}, {x: 0.07500000000000001, y: 46.80232558139535}, {x: 0.1, y: 50.58139534883721}, {x: 0.125, y: 53.48837209302325}, {x: 0.15000000000000002, y: 56.68604651162791}, {x: 0.17500000000000002, y: 58.43023255813954}, {x: 0.2, y: 62.7906976744186}, {x: 0.225, y: 65.69767441860465}, {x: 0.25, y: 67.44186046511628}, {x: 0.275, y: 68.8953488372093}, {x: 0.30000000000000004, y: 70.05813953488372}, {x: 0.325, y: 71.22093023255815}, {x: 0.35000000000000003, y: 72.67441860465115}, {x: 0.375, y: 74.4186046511628}, {x: 0.4, y: 75.29069767441861}, {x: 0.42500000000000004, y: 76.74418604651163}, {x: 0.45, y: 79.06976744186046}, {x: 0.47500000000000003, y: 81.1046511627907}, {x: 0.5, y: 82.26744186046511}, {x: 0.525, y: 83.72093023255815}, {x: 0.55, y: 84.01162790697676}, {x: 0.5750000000000001, y: 84.88372093023256}, {x: 0.6000000000000001, y: 85.17441860465115}, {x: 0.625, y: 85.17441860465115}, {x: 0.65, y: 86.04651162790698}, {x: 0.675, y: 87.20930232558139}, {x: 0.7000000000000001, y: 87.20930232558139}, {x: 0.7250000000000001, y: 87.5}, {x: 0.75, y: 87.79069767441861}, {x: 0.775, y: 88.66279069767442}, {x: 0.8, y: 89.82558139534885}, {x: 0.8250000000000001, y: 90.40697674418605}, {x: 0.8500000000000001, y: 91.27906976744185}, {x: 0.875, y: 92.44186046511628}, {x: 0.9, y: 92.44186046511628}, {x: 0.925, y: 93.31395348837209}, {x: 0.9500000000000001, y: 93.31395348837209}, {x: 0.9750000000000001, y: 93.6046511627907}, {x: 1.0, y: 93.6046511627907}, {x: 1.0250000000000001, y: 93.6046511627907}, {x: 1.05, y: 94.18604651162791}, {x: 1.075, y: 94.47674418604652}, {x: 1.1, y: 94.47674418604652}, {x: 1.125, y: 94.76744186046511}, {x: 1.1500000000000001, y: 94.76744186046511}, {x: 1.175, y: 94.76744186046511}, {x: 1.2000000000000002, y: 95.34883720930233}, {x: 1.225, y: 95.34883720930233}, {x: 1.25, y: 95.63953488372093}, {x: 1.2750000000000001, y: 95.63953488372093}, {x: 1.3, y: 95.63953488372093}, {x: 1.3250000000000002, y: 95.63953488372093}, {x: 1.35, y: 95.93023255813954}, {x: 1.375, y: 96.51162790697676}, {x: 1.4000000000000001, y: 97.09302325581395}, {x: 1.425, y: 97.67441860465115}, {x: 1.4500000000000002, y: 97.67441860465115}, {x: 1.475, y: 97.96511627906976}, {x: 1.5, y: 97.96511627906976}, {x: 1.5250000000000001, y: 97.96511627906976}, {x: 1.55, y: 98.25581395348837}, {x: 1.5750000000000002, y: 98.25581395348837}, {x: 1.6, y: 98.54651162790698}, {x: 1.625, y: 98.54651162790698}, {x: 1.6500000000000001, y: 99.12790697674419}, {x: 1.675, y: 99.12790697674419}, {x: 1.7000000000000002, y: 99.12790697674419}, {x: 1.725, y: 99.12790697674419}, {x: 1.75, y: 99.12790697674419}, {x: 1.7750000000000001, y: 99.12790697674419}, {x: 1.8, y: 99.12790697674419}, {x: 1.8250000000000002, y: 99.12790697674419}, {x: 1.85, y: 99.4186046511628}, {x: 1.875, y: 99.4186046511628}, {x: 1.9000000000000001, y: 99.4186046511628}, {x: 1.925, y: 99.4186046511628}, {x: 1.9500000000000002, y: 99.4186046511628}, {x: 1.975, y: 99.4186046511628}, {x: 2.0, y: 99.4186046511628}, {x: 2.025, y: 99.4186046511628}, {x: 2.0500000000000003, y: 99.4186046511628}, {x: 2.075, y: 99.70930232558139}, {x: 2.1, y: 99.70930232558139}, {x: 2.125, y: 99.70930232558139}, {x: 2.15, y: 99.70930232558139}, {x: 2.1750000000000003, y: 99.70930232558139}, {x: 2.2, y: 99.70930232558139}, {x: 2.225, y: 99.70930232558139}, {x: 2.25, y: 99.70930232558139}, {x: 2.275, y: 99.70930232558139}, {x: 2.3000000000000003, y: 99.70930232558139}, {x: 2.325, y: 99.70930232558139}, {x: 2.35, y: 99.70930232558139}, {x: 2.375, y: 99.70930232558139}, {x: 2.4000000000000004, y: 99.70930232558139}, {x: 2.4250000000000003, y: 99.70930232558139}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'CSO – Untreated', 'showLine': true, 'borderColor': 'rgba(31, 119, 180,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.5}, {x: 0.025, y: 29.375}, {x: 0.05, y: 38.75}, {x: 0.07500000000000001, y: 43.125}, {x: 0.1, y: 49.375}, {x: 0.125, y: 53.125}, {x: 0.15000000000000002, y: 55.625}, {x: 0.17500000000000002, y: 58.12500000000001}, {x: 0.2, y: 59.375}, {x: 0.225, y: 63.125}, {x: 0.25, y: 66.25}, {x: 0.275, y: 67.5}, {x: 0.30000000000000004, y: 67.5}, {x: 0.325, y: 69.375}, {x: 0.35000000000000003, y: 71.25}, {x: 0.375, y: 72.5}, {x: 0.4, y: 72.5}, {x: 0.42500000000000004, y: 75.625}, {x: 0.45, y: 80.0}, {x: 0.47500000000000003, y: 83.125}, {x: 0.5, y: 83.75}, {x: 0.525, y: 85.0}, {x: 0.55, y: 85.0}, {x: 0.5750000000000001, y: 85.625}, {x: 0.6000000000000001, y: 85.625}, {x: 0.625, y: 85.625}, {x: 0.65, y: 86.875}, {x: 0.675, y: 88.125}, {x: 0.7000000000000001, y: 88.125}, {x: 0.7250000000000001, y: 88.75}, {x: 0.75, y: 88.75}, {x: 0.775, y: 89.375}, {x: 0.8, y: 90.0}, {x: 0.8250000000000001, y: 91.25}, {x: 0.8500000000000001, y: 92.5}, {x: 0.875, y: 92.5}, {x: 0.9, y: 92.5}, {x: 0.925, y: 93.75}, {x: 0.9500000000000001, y: 93.75}, {x: 0.9750000000000001, y: 94.375}, {x: 1.0, y: 94.375}, {x: 1.0250000000000001, y: 94.375}, {x: 1.05, y: 94.375}, {x: 1.075, y: 95.0}, {x: 1.1, y: 95.0}, {x: 1.125, y: 95.625}, {x: 1.1500000000000001, y: 95.625}, {x: 1.175, y: 95.625}, {x: 1.2000000000000002, y: 96.875}, {x: 1.225, y: 96.875}, {x: 1.25, y: 96.875}, {x: 1.2750000000000001, y: 96.875}, {x: 1.3, y: 96.875}, {x: 1.3250000000000002, y: 96.875}, {x: 1.35, y: 96.875}, {x: 1.375, y: 97.5}, {x: 1.4000000000000001, y: 97.5}, {x: 1.425, y: 98.125}, {x: 1.4500000000000002, y: 98.125}, {x: 1.475, y: 98.125}, {x: 1.5, y: 98.125}, {x: 1.5250000000000001, y: 98.125}, {x: 1.55, y: 98.125}, {x: 1.5750000000000002, y: 98.125}, {x: 1.6, y: 98.125}, {x: 1.625, y: 98.125}, {x: 1.6500000000000001, y: 98.75}, {x: 1.675, y: 98.75}, {x: 1.7000000000000002, y: 98.75}, {x: 1.725, y: 98.75}, {x: 1.75, y: 98.75}, {x: 1.7750000000000001, y: 98.75}, {x: 1.8, y: 98.75}, {x: 1.8250000000000002, y: 98.75}, {x: 1.85, y: 99.375}, {x: 1.875, y: 99.375}, {x: 1.9000000000000001, y: 99.375}, {x: 1.925, y: 99.375}, {x: 1.9500000000000002, y: 99.375}, {x: 1.975, y: 99.375}, {x: 2.0, y: 99.375}, {x: 2.025, y: 99.375}, {x: 2.0500000000000003, y: 99.375}, {x: 2.075, y: 100.0}, {x: 2.1, y: 100.0}, {x: 2.125, y: 100.0}, {x: 2.15, y: 100.0}, {x: 2.1750000000000003, y: 100.0}, {x: 2.2, y: 100.0}, {x: 2.225, y: 100.0}, {x: 2.25, y: 100.0}, {x: 2.275, y: 100.0}, {x: 2.3000000000000003, y: 100.0}, {x: 2.325, y: 100.0}, {x: 2.35, y: 100.0}, {x: 2.375, y: 100.0}, {x: 2.4000000000000004, y: 100.0}, {x: 2.4250000000000003, y: 100.0}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'CSO – Treated', 'showLine': true, 'borderColor': 'rgba(255, 127, 14,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.941176470588235}, {x: 0.025, y: 32.94117647058823}, {x: 0.05, y: 40.588235294117645}, {x: 0.07500000000000001, y: 44.70588235294118}, {x: 0.1, y: 50.0}, {x: 0.125, y: 52.352941176470594}, {x: 0.15000000000000002, y: 54.11764705882353}, {x: 0.17500000000000002, y: 55.88235294117647}, {x: 0.2, y: 57.647058823529406}, {x: 0.225, y: 61.1764705882353}, {x: 0.25, y: 64.11764705882354}, {x: 0.275, y: 66.47058823529412}, {x: 0.30000000000000004, y: 67.64705882352942}, {x: 0.325, y: 69.41176470588235}, {x: 0.35000000000000003, y: 71.17647058823529}, {x: 0.375, y: 73.52941176470588}, {x: 0.4, y: 74.11764705882354}, {x: 0.42500000000000004, y: 75.88235294117646}, {x: 0.45, y: 78.82352941176471}, {x: 0.47500000000000003, y: 81.76470588235294}, {x: 0.5, y: 82.35294117647058}, {x: 0.525, y: 83.52941176470588}, {x: 0.55, y: 83.52941176470588}, {x: 0.5750000000000001, y: 84.11764705882354}, {x: 0.6000000000000001, y: 84.70588235294117}, {x: 0.625, y: 85.29411764705883}, {x: 0.65, y: 86.47058823529412}, {x: 0.675, y: 87.6470588235294}, {x: 0.7000000000000001, y: 87.6470588235294}, {x: 0.7250000000000001, y: 88.23529411764706}, {x: 0.75, y: 88.23529411764706}, {x: 0.775, y: 88.8235294117647}, {x: 0.8, y: 88.8235294117647}, {x: 0.8250000000000001, y: 89.41176470588236}, {x: 0.8500000000000001, y: 90.58823529411765}, {x: 0.875, y: 91.17647058823529}, {x: 0.9, y: 91.76470588235294}, {x: 0.925, y: 91.76470588235294}, {x: 0.9500000000000001, y: 91.76470588235294}, {x: 0.9750000000000001, y: 92.3529411764706}, {x: 1.0, y: 92.3529411764706}, {x: 1.0250000000000001, y: 92.3529411764706}, {x: 1.05, y: 92.3529411764706}, {x: 1.075, y: 92.94117647058823}, {x: 1.1, y: 92.94117647058823}, {x: 1.125, y: 92.94117647058823}, {x: 1.1500000000000001, y: 92.94117647058823}, {x: 1.175, y: 92.94117647058823}, {x: 1.2000000000000002, y: 93.52941176470588}, {x: 1.225, y: 93.52941176470588}, {x: 1.25, y: 94.70588235294117}, {x: 1.2750000000000001, y: 95.29411764705881}, {x: 1.3, y: 95.29411764705881}, {x: 1.3250000000000002, y: 95.29411764705881}, {x: 1.35, y: 95.29411764705881}, {x: 1.375, y: 95.88235294117648}, {x: 1.4000000000000001, y: 95.88235294117648}, {x: 1.425, y: 96.47058823529412}, {x: 1.4500000000000002, y: 96.47058823529412}, {x: 1.475, y: 97.05882352941177}, {x: 1.5, y: 97.05882352941177}, {x: 1.5250000000000001, y: 97.05882352941177}, {x: 1.55, y: 97.05882352941177}, {x: 1.5750000000000002, y: 97.05882352941177}, {x: 1.6, y: 97.05882352941177}, {x: 1.625, y: 97.05882352941177}, {x: 1.6500000000000001, y: 97.6470588235294}, {x: 1.675, y: 97.6470588235294}, {x: 1.7000000000000002, y: 97.6470588235294}, {x: 1.725, y: 97.6470588235294}, {x: 1.75, y: 97.6470588235294}, {x: 1.7750000000000001, y: 97.6470588235294}, {x: 1.8, y: 97.6470588235294}, {x: 1.8250000000000002, y: 97.6470588235294}, {x: 1.85, y: 98.23529411764706}, {x: 1.875, y: 98.23529411764706}, {x: 1.9000000000000001, y: 98.23529411764706}, {x: 1.925, y: 98.23529411764706}, {x: 1.9500000000000002, y: 98.23529411764706}, {x: 1.975, y: 98.23529411764706}, {x: 2.0, y: 98.23529411764706}, {x: 2.025, y: 98.23529411764706}, {x: 2.0500000000000003, y: 98.23529411764706}, {x: 2.075, y: 98.82352941176471}, {x: 2.1, y: 98.82352941176471}, {x: 2.125, y: 98.82352941176471}, {x: 2.15, y: 98.82352941176471}, {x: 2.1750000000000003, y: 98.82352941176471}, {x: 2.2, y: 98.82352941176471}, {x: 2.225, y: 98.82352941176471}, {x: 2.25, y: 98.82352941176471}, {x: 2.275, y: 98.82352941176471}, {x: 2.3000000000000003, y: 98.82352941176471}, {x: 2.325, y: 98.82352941176471}, {x: 2.35, y: 98.82352941176471}, {x: 2.375, y: 98.82352941176471}, {x: 2.4000000000000004, y: 98.82352941176471}, {x: 2.4250000000000003, y: 98.82352941176471}, {x: 2.45, y: 98.82352941176471}, {x: 2.475, y: 98.82352941176471}, {x: 2.5, y: 98.82352941176471}, {x: 2.5250000000000004, y: 99.41176470588235}, {x: 2.5500000000000003, y: 99.41176470588235}, {x: 2.575, y: 99.41176470588235}, {x: 2.6, y: 99.41176470588235}, {x: 2.625, y: 99.41176470588235}, {x: 2.6500000000000004, y: 99.41176470588235}, {x: 2.6750000000000003, y: 99.41176470588235}, {x: 2.7, y: 99.41176470588235}, {x: 2.725, y: 99.41176470588235}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'Partially Treated', 'showLine': true, 'borderColor': 'rgba(44, 160, 44,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 0.0}, {x: 0.025, y: 9.090909090909092}, {x: 0.05, y: 18.181818181818183}, {x: 0.07500000000000001, y: 22.727272727272727}, {x: 0.1, y: 29.545454545454547}, {x: 0.125, y: 31.818181818181817}, {x: 0.15000000000000002, y: 31.818181818181817}, {x: 0.17500000000000002, y: 31.818181818181817}, {x: 0.2, y: 36.36363636363637}, {x: 0.225, y: 38.63636363636363}, {x: 0.25, y: 40.909090909090914}, {x: 0.275, y: 40.909090909090914}, {x: 0.30000000000000004, y: 43.18181818181818}, {x: 0.325, y: 43.18181818181818}, {x: 0.35000000000000003, y: 47.72727272727273}, {x: 0.375, y: 52.27272727272727}, {x: 0.4, y: 52.27272727272727}, {x: 0.42500000000000004, y: 56.81818181818182}, {x: 0.45, y: 59.09090909090909}, {x: 0.47500000000000003, y: 61.36363636363637}, {x: 0.5, y: 61.36363636363637}, {x: 0.525, y: 63.63636363636363}, {x: 0.55, y: 65.9090909090909}, {x: 0.5750000000000001, y: 70.45454545454545}, {x: 0.6000000000000001, y: 70.45454545454545}, {x: 0.625, y: 70.45454545454545}, {x: 0.65, y: 75.0}, {x: 0.675, y: 75.0}, {x: 0.7000000000000001, y: 75.0}, {x: 0.7250000000000001, y: 75.0}, {x: 0.75, y: 75.0}, {x: 0.775, y: 75.0}, {x: 0.8, y: 77.27272727272727}, {x: 0.8250000000000001, y: 79.54545454545455}, {x: 0.8500000000000001, y: 79.54545454545455}, {x: 0.875, y: 79.54545454545455}, {x: 0.9, y: 79.54545454545455}, {x: 0.925, y: 79.54545454545455}, {x: 0.9500000000000001, y: 79.54545454545455}, {x: 0.9750000000000001, y: 81.81818181818183}, {x: 1.0, y: 81.81818181818183}, {x: 1.0250000000000001, y: 81.81818181818183}, {x: 1.05, y: 81.81818181818183}, {x: 1.075, y: 81.81818181818183}, {x: 1.1, y: 81.81818181818183}, {x: 1.125, y: 81.81818181818183}, {x: 1.1500000000000001, y: 81.81818181818183}, {x: 1.175, y: 84.0909090909091}, {x: 1.2000000000000002, y: 84.0909090909091}, {x: 1.225, y: 84.0909090909091}, {x: 1.25, y: 84.0909090909091}, {x: 1.2750000000000001, y: 84.0909090909091}, {x: 1.3, y: 84.0909090909091}, {x: 1.3250000000000002, y: 84.0909090909091}, {x: 1.35, y: 84.0909090909091}, {x: 1.375, y: 88.63636363636364}, {x: 1.4000000000000001, y: 90.9090909090909}, {x: 1.425, y: 90.9090909090909}, {x: 1.4500000000000002, y: 93.18181818181817}, {x: 1.475, y: 93.18181818181817}, {x: 1.5, y: 93.18181818181817}, {x: 1.5250000000000001, y: 93.18181818181817}, {x: 1.55, y: 95.45454545454545}, {x: 1.5750000000000002, y: 95.45454545454545}, {x: 1.6, y: 95.45454545454545}, {x: 1.625, y: 95.45454545454545}, {x: 1.6500000000000001, y: 97.72727272727273}, {x: 1.675, y: 97.72727272727273}, {x: 1.7000000000000002, y: 97.72727272727273}, {x: 1.725, y: 97.72727272727273}, {x: 1.75, y: 97.72727272727273}, {x: 1.7750000000000001, y: 100.0}, {x: 1.8, y: 100.0}, {x: 1.8250000000000002, y: 100.0}, {x: 1.85, y: 100.0}, {x: 1.875, y: 100.0}, {x: 1.9000000000000001, y: 100.0}, {x: 1.925, y: 100.0}, {x: 1.9500000000000002, y: 100.0}, {x: 1.975, y: 100.0}, {x: 2.0, y: 100.0}, {x: 2.025, y: 100.0}, {x: 2.0500000000000003, y: 100.0}, {x: 2.075, y: 100.0}, {x: 2.1, y: 100.0}, {x: 2.125, y: 100.0}, {x: 2.15, y: 100.0}, {x: 2.1750000000000003, y: 100.0}, {x: 2.2, y: 100.0}, {x: 2.225, y: 100.0}, {x: 2.25, y: 100.0}, {x: 2.275, y: 100.0}, {x: 2.3000000000000003, y: 100.0}, {x: 2.325, y: 100.0}, {x: 2.35, y: 100.0}, {x: 2.375, y: 100.0}, {x: 2.4000000000000004, y: 100.0}, {x: 2.4250000000000003, y: 100.0}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'SSO', 'showLine': true, 'borderColor': 'rgba(214, 39, 40,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_freq.html b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_freq.html index a836ebd3..3021ed0c 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_freq.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_freq.html @@ -14,7 +14,7 @@ data: { labels: ["None (<0.05 in)", "Light (0.05\u20130.25 in)", "Moderate (0.25\u20130.75 in)", "Heavy (0.75\u20131.5 in)", "Very heavy (>1.5 in)"], - datasets: [{'data': [30.128205128205128, 37.359550561797754, 35.69023569023569, 33.088235294117645, 27.77777777777778], 'label': 'CSO – Untreated', 'backgroundColor': 'rgba(31, 119, 180,0.75)', 'borderColor': 'rgba(31, 119, 180,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [0.4807692307692308, 0.2808988764044944, 0.33670033670033667, 0.7352941176470588, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(255, 127, 14,0.75)', 'borderColor': 'rgba(255, 127, 14,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [1.6025641025641024, 1.9662921348314606, 2.0202020202020203, 5.88235294117647, 5.555555555555555], 'label': 'Partially Treated', 'backgroundColor': 'rgba(44, 160, 44,0.75)', 'borderColor': 'rgba(44, 160, 44,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [1.282051282051282, 1.1235955056179776, 2.0202020202020203, 2.941176470588235, 5.555555555555555], 'label': 'SSO', 'backgroundColor': 'rgba(214, 39, 40,0.75)', 'borderColor': 'rgba(214, 39, 40,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [624, 356, 297, 136, 36], 'label': 'Days in bin', 'type': 'line', 'yAxisID': 'y1', 'backgroundColor': 'rgba(148, 103, 189,0.15)', 'borderColor': 'rgba(148, 103, 189,0.7)', 'pointBackgroundColor': 'rgba(148, 103, 189,0.9)', 'pointRadius': 4, 'fill': false}] + datasets: [{'data': [30.718954248366014, 38.328530259366, 36.55172413793103, 33.088235294117645, 27.77777777777778], 'label': 'CSO – Untreated', 'backgroundColor': 'rgba(31, 119, 180,0.75)', 'borderColor': 'rgba(31, 119, 180,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [0.49019607843137253, 0.2881844380403458, 0.3448275862068966, 0.7352941176470588, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(255, 127, 14,0.75)', 'borderColor': 'rgba(255, 127, 14,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [1.6339869281045754, 2.0172910662824206, 2.0689655172413794, 5.88235294117647, 5.555555555555555], 'label': 'Partially Treated', 'backgroundColor': 'rgba(44, 160, 44,0.75)', 'borderColor': 'rgba(44, 160, 44,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [1.3071895424836601, 1.1527377521613833, 2.0689655172413794, 2.941176470588235, 5.555555555555555], 'label': 'SSO', 'backgroundColor': 'rgba(214, 39, 40,0.75)', 'borderColor': 'rgba(214, 39, 40,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [612, 347, 290, 136, 36], 'label': 'Days in bin', 'type': 'line', 'yAxisID': 'y1', 'backgroundColor': 'rgba(148, 103, 189,0.15)', 'borderColor': 'rgba(148, 103, 189,0.7)', 'pointBackgroundColor': 'rgba(148, 103, 189,0.9)', 'pointRadius': 4, 'fill': false}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_scatter.html b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_scatter.html index 0eba7f59..5052dd24 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_scatter.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_scatter.html @@ -11,7 +11,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.04398744620598642, y: 2.386362}, {x: 0.16146213108924684, y: 0.021273}, {x: 0.012930662557778324, y: 0.292951}, {x: 0.19334818775994964, y: 0.1}, {x: 0.0022244904902832246, y: 0.04}, {x: 0.0, y: 14.988289}, {x: 0.010166666666663824, y: 5.809919}, {x: 0.14897212741751703, y: 0.1348}, {x: 0.002378141437752916, y: 14.006946}, {x: 0.05058153126826132, y: 12.332009}, {x: 0.4275777816634581, y: 0.029377}, {x: 0.05990872852233399, y: 64.235084}, {x: 0.021667367978116293, y: 0.551}, {x: 0.05948071900445252, y: 0.206914}, {x: 0.043937681159417416, y: 0.459}, {x: 0.177012769838854, y: 1.347}, {x: 0.18013581155686129, y: 0.567375}, {x: 0.11958786797501943, y: 37.910347}, {x: 0.17501242937852823, y: 0.021439}, {x: 0.3003201783723494, y: 0.83}, {x: 0.030151688708386828, y: 15.203807}, {x: 0.08265066756802143, y: 21.031316}, {x: 0.4053757354252066, y: 5.08615}, {x: 0.0037341772151870244, y: 3.983965}, {x: 0.009029126213589424, y: 89.991602}, {x: 0.3464190633205077, y: 13.669269}, {x: 0.0024671881790498352, y: 1.02853}, {x: 0.17081355932203113, y: 40.40906}, {x: 0.004428231218875864, y: 14.806652}, {x: 0.07978846462193644, y: 2.544}, {x: 0.4755151908540771, y: 0.57}, {x: 0.497006261030336, y: 45.501642}, {x: 1.037925925925923, y: 0.0}, {x: 0.0023188203877829135, y: 8.105}, {x: 0.1352962573591224, y: 0.21}, {x: 0.0005016722407997134, y: 7.370675}, {x: 0.3125106583072071, y: 13.222176}, {x: 0.04458591549295481, y: 13.821422}, {x: 0.009634618973899915, y: 19.88247}, {x: 0.07980808788130471, y: 14.428166}, {x: 0.45309253525971493, y: 3.231572}, {x: 0.04039738562091201, y: 6.06003}, {x: 0.0016939091002753713, y: 3.29512}, {x: 0.01852856841661107, y: 10.510136}, {x: 0.2340433205802617, y: 0.00016}, {x: 0.448749999999997, y: 6.904942}, {x: 0.0007039143156818135, y: 0.06162}, {x: 6.514657980167368e-05, y: 45.491973}, {x: 0.04928104575163102, y: 3.808293}, {x: 0.862169244509395, y: 2.21405}, {x: 0.3899601847427905, y: 2.17717}, {x: 0.2606462585033984, y: 13.596332}, {x: 0.027734396231539712, y: 5.484528}, {x: 0.5042960911371209, y: 17.675047}, {x: 0.7055882615288527, y: 6.67505}, {x: 0.013637118298549014, y: 24.786637}, {x: 0.020018895826484015, y: 41.664277}, {x: 0.5714212554031168, y: 0.001139}, {x: 0.00020338983050529138, y: 31.401484}, {x: 0.024374999999996892, y: 30.957375}, {x: 1.2257061688311657, y: 0.9154}, {x: 1.6362224731789916, y: 0.00173}, {x: 0.0, y: 2.795936}, {x: 0.03992395437262039, y: 0.73266}, {x: 0.44779124366861267, y: 1.976917}, {x: 0.06656267384342125, y: 0.833941}, {x: 0.7914620277071627, y: 1.455466}, {x: 0.3538597186447363, y: 0.370801}, {x: 0.006226382324112592, y: 27.038811}, {x: 0.07880732624457679, y: 14.99121}, {x: 0.2677423632705292, y: 0.56528}, {x: 0.1005571415126862, y: 22.982991}, {x: 0.09854013603380829, y: 1.03359}, {x: 1.1777329192546553, y: 21.446277}, {x: 0.19162623623810088, y: 8.733693}, {x: 1.0403218884120138, y: 0.000304}, {x: 1.3667586206896518, y: 68.579833}, {x: 0.406848226424419, y: 42.742257}, {x: 1.3900428767628012, y: 0.004}, {x: 0.004839513316292991, y: 0.051}, {x: 0.04199886569872629, y: 0.24484}, {x: 0.0008299283757118914, y: 0.03496}, {x: 0.0018263804651622278, y: 1.297309}, {x: 0.13415774581773768, y: 0.04134}, {x: 0.05171891906888669, y: 7.25509}, {x: 0.2435396919024921, y: 0.670365}, {x: 0.06092956694872748, y: 1.62298}, {x: 0.5062574098261798, y: 2.071931}, {x: 0.3190022010271428, y: 19.71011}, {x: 0.0012320886660476804, y: 0.221445}, {x: 0.20879614428797016, y: 50.08257}, {x: 0.10718367346938448, y: 48.827787}, {x: 1.4185483276643958, y: 0.768}, {x: 2.440360809178741, y: 0.023}, {x: 0.009094076655049091, y: 0.09641}, {x: 0.00010135135134819137, y: 0.00869}, {x: 0.05399730367374139, y: 1.734085}, {x: 0.2047433918579942, y: 1.632385}, {x: 0.2079412041613677, y: 0.009516}, {x: 0.022968502086145835, y: 5.540923}, {x: 0.29735157945502455, y: 0.664795}, {x: 0.017643366111844833, y: 0.08735}, {x: 0.0, y: 4.199654}, {x: 0.0025783972125403357, y: 4.136761}, {x: 0.0002439323664352387, y: 7.991253}, {x: 0.013672320587211038, y: 46.862818}, {x: 0.10873748006379258, y: 22.555311}, {x: 0.09991374269005518, y: 77.407371}, {x: 0.7837780406589522, y: 0.327422}, {x: 2.0588966661233226, y: 3.117997}, {x: 0.01117165795845219, y: 1.02383}, {x: 0.0, y: 76.370564}, {x: 0.1283225806451582, y: 15.337338}, {x: 0.01200855310049569, y: 0.460828}, {x: 3.1948881786028757e-05, y: 4.107151}, {x: 0.02653124999999689, y: 0.447444}, {x: 0.1863053904923567, y: 0.5519}, {x: 0.12614911837578757, y: 0.231244}, {x: 0.06704557091653539, y: 5.294564}, {x: 0.07186694172253419, y: 2.706549}, {x: 0.2664448638004563, y: 0.1}, {x: 0.34443030303029976, y: 0.448397}, {x: 0.16176195286194958, y: 0.8062}, {x: 0.22994903994903668, y: 13.132424}, {x: 0.2736503054778885, y: 0.024727}, {x: 0.5240919540229853, y: 4.223861}, {x: 0.47353568007662505, y: 12.376726}, {x: 0.863527686818823, y: 2.608493}, {x: 0.013314348995408891, y: 6.448695}, {x: 0.40361468161720826, y: 54.985995}, {x: 0.37101638349514243, y: 22.999942}, {x: 0.9584617248061983, y: 59.631272}, {x: 0.004290674603171392, y: 38.245635}, {x: 0.23709302325581078, y: 29.923282}, {x: 1.4594999496627372, y: 19.988466}, {x: 0.7535597484276698, y: 0.0056}, {x: 0.03469177489177169, y: 22.112844}, {x: 0.03744279529993489, y: 4.108909}, {x: 0.07624667258207309, y: 14.393118}, {x: 1.3538986383668274, y: 0.48107}, {x: 0.9177496306089089, y: 12.755603}, {x: 0.07410527996593239, y: 28.413219}, {x: 0.5772989392478269, y: 1.19653}, {x: 0.8042620676177415, y: 100.785405}, {x: 0.7951160626359444, y: 0.021538}, {x: 1.8386041299345517, y: 1.794867}, {x: 0.2062108931141549, y: 0.0}, {x: 0.1985696971008658, y: 89.318126}, {x: 0.0769010940178143, y: 0.072}, {x: 0.856395255890167, y: 0.009781}, {x: 0.0030894512653438914, y: 55.749592}, {x: 0.06911280412877539, y: 0.1441}, {x: 0.4160995903486904, y: 22.673727}, {x: 0.21288039148742138, y: 140.908629}, {x: 0.294385409336145, y: 0.02}, {x: 0.013451937383162381, y: 0.271819}, {x: 0.017611849700659682, y: 129.800005}, {x: 1.6291390754838995, y: 74.413025}, {x: 0.43470569013134, y: 6.493684}, {x: 0.2271787574763619, y: 17.27786}, {x: 0.4419805194805163, y: 89.667368}, {x: 0.9036271929824528, y: 1.190627}, {x: 0.021458763187034192, y: 1.35948}, {x: 0.2019805825242687, y: 0.235754}, {x: 0.010199964845887392, y: 19.665016}, {x: 0.6741912698718163, y: 0.27}, {x: 0.04193644772396269, y: 0.624938}, {x: 0.04900504089549709, y: 10.406746}, {x: 0.2916187004484845, y: 0.00673}, {x: 0.0011391406780306126, y: 1.158494}, {x: 0.04795774784190439, y: 2.987236}, {x: 0.4107686482030013, y: 55.978054}, {x: 0.63965517241379, y: 68.086431}, {x: 0.842413414276105, y: 0.04951}, {x: 1.4162005466839274, y: 4.902946}, {x: 0.5665817098822434, y: 0.285999}, {x: 0.21864110682512108, y: 100.362695}, {x: 0.0007277552451021914, y: 4.354436}, {x: 0.03894509676016209, y: 1.590639}, {x: 0.4301465233223481, y: 1.259388}, {x: 0.005076027559987291, y: 69.139044}, {x: 0.13522911654450528, y: 14.904492}, {x: 0.0021999999999967918, y: 0.108}, {x: 0.009110798122062492, y: 3.577282}, {x: 0.3863792124195349, y: 0.16886}, {x: 0.012867425510542436, y: 0.04904}, {x: 0.045663126828108136, y: 6.769284}, {x: 0.03688074404943684, y: 32.034277}, {x: 1.3780991507430969, y: 0.16583}, {x: 0.0015309058989510804, y: 0.02}, {x: 0.0004883222172434804, y: 1.321154}, {x: 0.03639095373248308, y: 10.03245}, {x: 0.9237381324360021, y: 0.007318}, {x: 0.00535123042505258, y: 0.181439}, {x: 0.1322420634920602, y: 0.082722}, {x: 0.007245370677636494, y: 17.278725}, {x: 0.00017780974735299277, y: 1.228166}, {x: 0.007270955873450693, y: 5.599912}, {x: 0.08200407912673069, y: 0.569479}, {x: 0.18439853184939298, y: 0.005424}, {x: 0.00036266381967788036, y: 25.419251}, {x: 0.07530258259655319, y: 69.364677}, {x: 0.00036764705882016936, y: 2.72}, {x: 0.0005519480519446693, y: 81.933924}, {x: 0.04397130289065427, y: 131.266567}, {x: 1.540725856386694, y: 8.1}, {x: 0.03753451031676497, y: 1.435439}, {x: 0.03225225225224887, y: 10.250246}, {x: 0.4662999999999966, y: 0.001301}, {x: 0.01099327427821177, y: 1.50235}, {x: 1.0699467696482587, y: 153.432602}, {x: 0.5715691948421124, y: 165.064711}, {x: 0.02928781028424299, y: 80.659813}, {x: 0.3416163003662971, y: 10.438263}, {x: 0.004975457111298795, y: 18.897537}, {x: 0.20095013644256698, y: 0.111817}, {x: 0.7702742027830991, y: 12.253912}, {x: 0.6479750657698606, y: 8.852955}, {x: 0.02921565037944029, y: 0.0}, {x: 0.02451737451737139, y: 2.05363}, {x: 0.0009558823529379914, y: 1.81508}, {x: 0.00010989010988699137, y: 19.00464}, {x: 0.013443223443220291, y: 6.512919}, {x: 0.4693672316384149, y: 0.55}, {x: 0.3606009030424905, y: 9.368536}, {x: 0.104782608695649, y: 0.05}, {x: 1.1193698187777104, y: 4.687424}, {x: 0.053590358875909995, y: 37.842971}, {x: 0.36287438625204266, y: 3.157449}, {x: 1.5864069441197073, y: 15.557648}, {x: 0.1561755053819868, y: 0.078}, {x: 0.06024544293824889, y: 39.074916}, {x: 0.05571663081625421, y: 2.073886}, {x: 1.3297104858022548, y: 0.328}, {x: 0.014796283441017792, y: 5.262768}, {x: 0.1942765544241072, y: 0.048014}, {x: 0.005345452578041492, y: 4.330398}, {x: 0.0883567006335638, y: 3.844331}, {x: 0.011983612077671091, y: 0.361349}, {x: 0.1872619590471816, y: 0.279198}, {x: 0.0017434210526283914, y: 0.755196}, {x: 0.05537888198757449, y: 0.953377}, {x: 0.4722573196544463, y: 7.258815}, {x: 0.05137342475012959, y: 1.57481}, {x: 0.3344376387993377, y: 0.063592}, {x: 0.056552262608807996, y: 0.243365}, {x: 0.3627221247807535, y: 0.054}, {x: 0.04798167475458919, y: 2.258552}, {x: 0.7769665638793125, y: 3.497437}, {x: 0.009035708667607325, y: 1.076285}, {x: 0.03080194518125229, y: 0.011493}, {x: 0.1845803713527819, y: 0.079057}, {x: 0.0022582078185785916, y: 34.150032}, {x: 0.04217541429631139, y: 0.000367}, {x: 0.00019088123840694453, y: 0.599335}, {x: 0.002817463516887891, y: 1.87477}, {x: 0.12773861370018808, y: 7.500272}, {x: 0.44757278706789233, y: 3.956328}, {x: 0.7383619664331937, y: 0.885436}, {x: 0.12355399362461525, y: 4.209}, {x: 0.010965290930710903, y: 11.537352}, {x: 0.0022066338169510025, y: 1.567161}, {x: 0.1828076227029228, y: 0.140609}, {x: 0.4938162385485869, y: 0.05}, {x: 0.17568365773266226, y: 0.7}, {x: 0.04375308145091996, y: 1.822583}, {x: 0.4338808903514755, y: 1.777898}, {x: 0.2858656840812356, y: 0.310627}, {x: 0.12055982711061565, y: 1.352369}, {x: 0.02876558292609629, y: 0.078324}, {x: 0.2163272200772169, y: 0.058985}, {x: 0.01112806840121029, y: 1.153856}, {x: 0.46915024277364875, y: 2.434355}, {x: 0.3283461538461506, y: 0.140918}, {x: 0.466241928540677, y: 0.541152}, {x: 0.5497809209492346, y: 0.127064}, {x: 0.8699140989729193, y: 0.136644}, {x: 0.7723585434173637, y: 0.676583}, {x: 0.5229908316549146, y: 0.145146}, {x: 0.046979744159454884, y: 16.469719}, {x: 0.3991397990388784, y: 0.27723}, {x: 0.13211555338858777, y: 2.641118}, {x: 0.0017270833333301915, y: 6.091944}, {x: 0.0002184829110696069, y: 0.098404}, {x: 0.03704598894854099, y: 0.22}, {x: 0.3142550354271125, y: 4.873268}, {x: 0.005730897009963591, y: 6.432674}, {x: 0.01078702131672949, y: 0.5828}, {x: 0.025770622114328793, y: 0.087195}, {x: 0.003785238914227017, y: 0.000417}, {x: 0.127115512259875, y: 0.016161}, {x: 0.0028546109172756335, y: 0.399984}, {x: 0.10509620406542813, y: 0.04}, {x: 1.1949181700540425, y: 0.331269}, {x: 0.2129642738174518, y: 8.333192}, {x: 0.03716431675762816, y: 1.762442}, {x: 0.09600323141933605, y: 1.368648}, {x: 0.0007451188454981354, y: 0.058895}, {x: 0.6741146089522845, y: 0.000427}, {x: 0.0011510735773003354, y: 0.699472}, {x: 0.06287773569023293, y: 0.022202}, {x: 0.00023489932885633548, y: 0.623608}, {x: 0.8495805006755796, y: 0.13583}, {x: 0.012756087981144136, y: 7.090504}, {x: 0.012670134201537836, y: 0.282527}, {x: 0.015910621674409636, y: 0.017117}, {x: 0.10700314865679361, y: 14.635388}, {x: 0.1688076144700199, y: 13.73283}, {x: 0.029195137071219124, y: 12.226141}, {x: 0.06228465244726202, y: 0.005483}, {x: 0.00020668356033925691, y: 2.418181}, {x: 0.13181617647058544, y: 0.019932}, {x: 0.027616438356161524, y: 0.158714}, {x: 0.012033713315544124, y: 9.241567}, {x: 0.23991554054053774, y: 6.523465}, {x: 0.0, y: 20.601979}, {x: 0.671402048655567, y: 0.000164}, {x: 0.0021245421245393243, y: 0.259201}, {x: 0.26685157874834275, y: 10.850603}, {x: 0.05440928270041912, y: 0.001449}, {x: 0.1853256704980814, y: 9.3e-05}, {x: 0.053179933665005424, y: 3.909926}, {x: 0.0, y: 0.364366}, {x: 0.08245528455284251, y: 3.785017}, {x: 0.11073643410852421, y: 0.004309}, {x: 0.5149517389074866, y: 0.035073}, {x: 0.6427251027314451, y: 0.0304}, {x: 0.4823971395734871, y: 0.008664}, {x: 0.0, y: 0.000341}, {x: 0.0021982758620660136, y: 0.085089}, {x: 0.026017371339452915, y: 3.288873}, {x: 0.06389601855430702, y: 0.243703}, {x: 0.6575481874447362, y: 20.218979}, {x: 0.8154699612403071, y: 0.003033}, {x: 0.8437385782615837, y: 8.390245}, {x: 0.018417986899659313, y: 0.2678}, {x: 0.007090845562540613, y: 7.345282}, {x: 0.015804022250745814, y: 24.768891}, {x: 0.3603407945150203, y: 0.0}, {x: 0.0007922333653860135, y: 2.070048}, {x: 0.1628441060381238, y: 17.897952}, {x: 0.2002332419778434, y: 16.403819}, {x: 0.04557614839582541, y: 0.282169}, {x: 3.71747211867045e-05, y: 1.035405}], 'label': 'CSO – Untreated', 'backgroundColor': 'rgba(31, 119, 180,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.04398744620598642, y: 0.51}, {x: 0.012930662557778324, y: 0.047198}, {x: 0.0, y: 0.165}, {x: 0.010166666666663824, y: 0.006283}, {x: 0.14897212741751703, y: 5.539}, {x: 0.002378141437752916, y: 3.523}, {x: 0.05990872852233399, y: 0.777977}, {x: 0.11958786797501943, y: 1.25}, {x: 0.08265066756802143, y: 1.612397}, {x: 0.4053757354252066, y: 2.636}, {x: 0.0037341772151870244, y: 1.07}, {x: 0.3464190633205077, y: 18.54409}, {x: 0.17081355932203113, y: 1.04}, {x: 0.004428231218875864, y: 0.19}, {x: 0.07978846462193644, y: 0.379}, {x: 0.497006261030336, y: 8.598}, {x: 0.0023188203877829135, y: 0.7}, {x: 0.0005016722407997134, y: 0.968}, {x: 0.3125106583072071, y: 4.322}, {x: 0.04458591549295481, y: 7.199}, {x: 0.009634618973899915, y: 3.592}, {x: 0.07980808788130471, y: 17.43}, {x: 0.45309253525971493, y: 0.18}, {x: 0.448749999999997, y: 0.89}, {x: 6.514657980167368e-05, y: 10.160915}, {x: 0.04928104575163102, y: 0.1}, {x: 0.2606462585033984, y: 4.86}, {x: 0.027734396231539712, y: 0.94}, {x: 0.5042960911371209, y: 13.054}, {x: 0.7055882615288527, y: 0.207}, {x: 0.013637118298549014, y: 1.337}, {x: 0.020018895826484015, y: 17.09}, {x: 0.00020338983050529138, y: 3.892}, {x: 0.024374999999996892, y: 16.11}, {x: 0.0, y: 0.222}, {x: 0.44779124366861267, y: 0.191}, {x: 0.06656267384342125, y: 0.0006}, {x: 0.006226382324112592, y: 3.154}, {x: 0.1005571415126862, y: 11.131}, {x: 0.09854013603380829, y: 0.924}, {x: 1.1777329192546553, y: 0.95}, {x: 0.19162623623810088, y: 7.735}, {x: 1.3667586206896518, y: 18.589}, {x: 0.406848226424419, y: 32.876}, {x: 0.2435396919024921, y: 0.31}, {x: 0.5062574098261798, y: 1.6}, {x: 0.3190022010271428, y: 1.417}, {x: 0.20879614428797016, y: 4.627}, {x: 0.10718367346938448, y: 93.37}, {x: 0.2079412041613677, y: 0.54}, {x: 0.022968502086145835, y: 4.617}, {x: 0.013672320587211038, y: 26.066}, {x: 0.09991374269005518, y: 25.453}, {x: 2.0588966661233226, y: 0.389}, {x: 0.01117165795845219, y: 0.013}, {x: 0.0, y: 32.385}, {x: 0.1283225806451582, y: 20.86}, {x: 3.1948881786028757e-05, y: 0.02}, {x: 0.07186694172253419, y: 0.17}, {x: 0.34443030303029976, y: 0.01}, {x: 0.22994903994903668, y: 1.1}, {x: 0.47353568007662505, y: 3.807}, {x: 0.40361468161720826, y: 0.012}, {x: 0.37101638349514243, y: 2.032}, {x: 0.9584617248061983, y: 7.29}, {x: 1.105131626462513, y: 3.112}, {x: 0.004290674603171392, y: 4.273}, {x: 0.23709302325581078, y: 10.205}, {x: 0.03744279529993489, y: 1.034}, {x: 0.07624667258207309, y: 30.176}, {x: 0.9177496306089089, y: 2.215}, {x: 0.07410527996593239, y: 5.481}, {x: 0.8042620676177415, y: 51.652}, {x: 1.8386041299345517, y: 6.344}, {x: 0.1985696971008658, y: 56.802}, {x: 0.0030894512653438914, y: 7.67}, {x: 0.4160995903486904, y: 1.116}, {x: 0.21288039148742138, y: 122.186}, {x: 0.017611849700659682, y: 67.975}, {x: 1.6291390754838995, y: 2.263}, {x: 0.43470569013134, y: 0.04}, {x: 0.2271787574763619, y: 5.646}, {x: 0.4419805194805163, y: 15.613}, {x: 0.9036271929824528, y: 0.61}, {x: 0.010199964845887392, y: 38.805}, {x: 0.6741912698718163, y: 0.16}, {x: 0.04900504089549709, y: 3.095}, {x: 0.0011391406780306126, y: 3.977}, {x: 0.04795774784190439, y: 1.496}, {x: 0.4107686482030013, y: 4.943}, {x: 0.63965517241379, y: 5.179}, {x: 1.4162005466839274, y: 0.83}, {x: 0.21864110682512108, y: 60.28}, {x: 0.4301465233223481, y: 1.186}, {x: 0.005076027559987291, y: 32.41887}, {x: 0.13522911654450528, y: 1.63}, {x: 0.009110798122062492, y: 3.07}, {x: 0.03688074404943684, y: 2.35}, {x: 0.1322420634920602, y: 5.83}, {x: 0.007245370677636494, y: 1.639}, {x: 0.007270955873450693, y: 3.501}, {x: 0.08200407912673069, y: 0.21}, {x: 0.00036266381967788036, y: 35.52}, {x: 0.07530258259655319, y: 56.27}, {x: 0.0005519480519446693, y: 5.224}, {x: 0.04397130289065427, y: 160.701}, {x: 0.03225225225224887, y: 2.343}, {x: 1.0699467696482587, y: 28.786}, {x: 0.5715691948421124, y: 108.015588}, {x: 0.02928781028424299, y: 63.1}, {x: 0.3416163003662971, y: 2.333}, {x: 0.004975457111298795, y: 2.787}, {x: 0.20095013644256698, y: 2.013}, {x: 0.7702742027830991, y: 6.299}, {x: 0.6479750657698606, y: 1.6458}, {x: 0.00010989010988699137, y: 2.29}, {x: 0.013443223443220291, y: 2.22}, {x: 0.4693672316384149, y: 0.479}, {x: 0.36287438625204266, y: 0.75}, {x: 0.1561755053819868, y: 0.4}, {x: 0.06024544293824889, y: 5.51}, {x: 0.4722573196544463, y: 1.318}, {x: 0.05137342475012959, y: 1.301}, {x: 0.04798167475458919, y: 1.306}, {x: 0.7769665638793125, y: 3.412}, {x: 0.0022582078185785916, y: 1.35}, {x: 0.44757278706789233, y: 1.339}, {x: 0.12355399362461525, y: 6.5}, {x: 0.010965290930710903, y: 0.134}, {x: 0.4338808903514755, y: 0.299}, {x: 0.46915024277364875, y: 0.568}, {x: 0.03704598894854099, y: 0.268}, {x: 0.3142550354271125, y: 1.571}, {x: 0.005730897009963591, y: 1.352}, {x: 0.01078702131672949, y: 4.293}, {x: 0.10509620406542813, y: 0.474}, {x: 1.1949181700540425, y: 0.413}, {x: 0.2129642738174518, y: 1.457}, {x: 0.0008724120000396354, y: 3.164}, {x: 0.00023489932885633548, y: 20.774}, {x: 0.8495805006755796, y: 7.847}, {x: 0.012756087981144136, y: 3.78}, {x: 0.012670134201537836, y: 0.137}, {x: 0.10700314865679361, y: 0.471}, {x: 0.1688076144700199, y: 0.013}, {x: 0.029195137071219124, y: 3.623}, {x: 0.00020668356033925691, y: 0.249}, {x: 0.027616438356161524, y: 0.044}, {x: 0.012033713315544124, y: 0.852}, {x: 0.23991554054053774, y: 1.067}, {x: 0.0, y: 1.864}, {x: 0.26685157874834275, y: 2.335}, {x: 0.053179933665005424, y: 0.231}, {x: 0.08245528455284251, y: 0.041}, {x: 0.6575481874447362, y: 10.696}, {x: 0.8154699612403071, y: 1.118}, {x: 0.8437385782615837, y: 0.815}, {x: 0.0747574913668233, y: 0.272}, {x: 0.015804022250745814, y: 6.61}, {x: 0.1628441060381238, y: 4.923}], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(255, 127, 14,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.010166666666663824, y: 1.0}, {x: 0.05058153126826132, y: 5.879}, {x: 0.05990872852233399, y: 8.01}, {x: 0.043937681159417416, y: 2.98}, {x: 0.11958786797501943, y: 11.5}, {x: 0.030151688708386828, y: 0.4}, {x: 0.0037341772151870244, y: 3.2}, {x: 0.009029126213589424, y: 73.07}, {x: 0.3464190633205077, y: 7.72}, {x: 0.0024671881790498352, y: 0.06}, {x: 0.17081355932203113, y: 5.79}, {x: 0.004428231218875864, y: 9.93}, {x: 0.497006261030336, y: 37.4014}, {x: 0.0023188203877829135, y: 1.8}, {x: 0.0005016722407997134, y: 7.74}, {x: 0.3125106583072071, y: 3.3}, {x: 0.04458591549295481, y: 2.5}, {x: 0.009634618973899915, y: 27.29}, {x: 0.07980808788130471, y: 11.97}, {x: 0.45309253525971493, y: 7.38}, {x: 0.0016939091002753713, y: 0.15}, {x: 0.448749999999997, y: 3.0}, {x: 6.514657980167368e-05, y: 1.27}, {x: 0.04928104575163102, y: 0.82}, {x: 0.862169244509395, y: 0.22}, {x: 0.2606462585033984, y: 5.15}, {x: 0.027734396231539712, y: 3.33}, {x: 0.5042960911371209, y: 22.37}, {x: 0.7055882615288527, y: 3.6}, {x: 0.013637118298549014, y: 19.44}, {x: 0.020018895826484015, y: 60.19}, {x: 0.00020338983050529138, y: 75.45}, {x: 0.024374999999996892, y: 35.91}, {x: 0.0, y: 0.86}, {x: 0.44779124366861267, y: 1.66}, {x: 0.06656267384342125, y: 0.49}, {x: 0.006226382324112592, y: 10.53}, {x: 0.1005571415126862, y: 16.48}, {x: 0.09854013603380829, y: 3.09}, {x: 1.1777329192546553, y: 22.1}, {x: 0.19162623623810088, y: 39.49}, {x: 1.3667586206896518, y: 47.782}, {x: 0.406848226424419, y: 159.68}, {x: 0.004839513316292991, y: 0.89}, {x: 0.05171891906888669, y: 0.4}, {x: 0.2435396919024921, y: 1.3}, {x: 0.5062574098261798, y: 2.81}, {x: 0.3190022010271428, y: 11.32}, {x: 0.20879614428797016, y: 168.87}, {x: 0.10718367346938448, y: 424.03}, {x: 0.2047433918579942, y: 1.05}, {x: 0.022968502086145835, y: 10.05}, {x: 0.29735157945502455, y: 0.25}, {x: 0.0, y: 0.667}, {x: 0.013672320587211038, y: 46.34}, {x: 0.09991374269005518, y: 101.8881}, {x: 2.0588966661233226, y: 15.7}, {x: 0.01117165795845219, y: 1.4}, {x: 0.0, y: 61.65}, {x: 0.1283225806451582, y: 36.013}, {x: 0.01200855310049569, y: 4.8}, {x: 3.1948881786028757e-05, y: 5.35}, {x: 0.06704557091653539, y: 6.98}, {x: 0.22994903994903668, y: 3.73}, {x: 0.2736503054778885, y: 0.45}, {x: 0.47353568007662505, y: 2.26}, {x: 0.013314348995408891, y: 8.28}, {x: 0.14959447159145028, y: 2.87}, {x: 0.40361468161720826, y: 9.89}, {x: 0.37101638349514243, y: 18.78}, {x: 0.9584617248061983, y: 26.13}, {x: 0.004290674603171392, y: 36.7}, {x: 0.23709302325581078, y: 0.13}, {x: 1.4594999496627372, y: 6.65}, {x: 0.07624667258207309, y: 16.085}, {x: 0.07410527996593239, y: 14.34}, {x: 0.5772989392478269, y: 0.81}, {x: 0.8042620676177415, y: 48.98}, {x: 1.8386041299345517, y: 0.06}, {x: 0.1985696971008658, y: 58.91}, {x: 0.0030894512653438914, y: 10.24}, {x: 0.21288039148742138, y: 18.781}, {x: 0.017611849700659682, y: 81.05}, {x: 1.6291390754838995, y: 14.69}, {x: 0.43470569013134, y: 0.16}, {x: 0.2271787574763619, y: 13.86}, {x: 0.4419805194805163, y: 97.728}, {x: 0.021458763187034192, y: 1.4}, {x: 0.010199964845887392, y: 67.63}, {x: 0.6741912698718163, y: 6.8}, {x: 0.6011719317356541, y: 37.08}, {x: 0.04900504089549709, y: 10.07}, {x: 0.0011391406780306126, y: 5.06}, {x: 0.4107686482030013, y: 6.54}, {x: 0.63965517241379, y: 15.31}, {x: 1.4162005466839274, y: 7.32}, {x: 0.21864110682512108, y: 114.1}, {x: 0.4301465233223481, y: 1.55}, {x: 0.8487853595994921, y: 27.98}, {x: 0.2025848468170946, y: 0.072}, {x: 0.005076027559987291, y: 14.93}, {x: 0.13522911654450528, y: 5.5}, {x: 0.03688074404943684, y: 10.64}, {x: 0.00535123042505258, y: 0.61}, {x: 0.007245370677636494, y: 36.63}, {x: 0.007270955873450693, y: 6.2}, {x: 0.08200407912673069, y: 8.87}, {x: 0.00036266381967788036, y: 10.21}, {x: 0.07530258259655319, y: 185.44}, {x: 0.0005519480519446693, y: 140.5}, {x: 0.04397130289065427, y: 318.905}, {x: 2.740869001547984, y: 11.254}, {x: 1.2440761986301334, y: 15.34}, {x: 0.03225225225224887, y: 12.54}, {x: 0.4662999999999966, y: 4.56}, {x: 1.0699467696482587, y: 497.34}, {x: 0.5715691948421124, y: 8.236964}, {x: 2.5219945455659705, y: 165.15}, {x: 0.02928781028424299, y: 276.452483}, {x: 0.8945985440877835, y: 25.21}, {x: 0.3416163003662971, y: 23.01}, {x: 0.004975457111298795, y: 26.58}, {x: 0.7702742027830991, y: 48.43}, {x: 0.6479750657698606, y: 30.02}, {x: 0.3541714877679464, y: 12.32333}, {x: 3.703703703392842e-05, y: 176.53}, {x: 0.0009558823529379914, y: 0.428482}, {x: 0.013443223443220291, y: 16.95}, {x: 0.4693672316384149, y: 3.7}, {x: 1.2271076389976068, y: 0.025053}, {x: 0.3739465799621084, y: 9.0}, {x: 0.08624999999999679, y: 100.0004}, {x: 0.2746508643841853, y: 0.19}, {x: 0.010965290930710903, y: 2.21}, {x: 0.2858656840812356, y: 6.84}, {x: 0.3407139176364464, y: 0.021042}, {x: 0.46915024277364875, y: 4.2}, {x: 0.3991397990388784, y: 0.2}, {x: 3.0030030026921405e-05, y: 0.0003}, {x: 0.03704598894854099, y: 1.898429}, {x: 0.3142550354271125, y: 8.761175}, {x: 0.005730897009963591, y: 4.768568}, {x: 0.01078702131672949, y: 4.4}, {x: 0.0028546109172756335, y: 6.5}, {x: 0.2129642738174518, y: 4.9}, {x: 0.03716431675762816, y: 0.0}, {x: 0.10700314865679361, y: 4.29}, {x: 0.1688076144700199, y: 8.44}, {x: 0.029195137071219124, y: 13.69}, {x: 0.00020668356033925691, y: 2.369}, {x: 0.012033713315544124, y: 4.011}, {x: 0.23991554054053774, y: 8.77}, {x: 0.0, y: 18.12}, {x: 0.26685157874834275, y: 17.11}, {x: 0.053179933665005424, y: 2.218}, {x: 0.0, y: 0.177}, {x: 0.08245528455284251, y: 0.538}, {x: 0.6575481874447362, y: 69.45}, {x: 0.8437385782615837, y: 5.139}, {x: 0.0747574913668233, y: 0.98332}, {x: 0.018417986899659313, y: 3.0293}, {x: 0.0027392977392947135, y: 391.22}, {x: 0.007090845562540613, y: 8.88}, {x: 0.1986045020761972, y: 2.7048}, {x: 0.015804022250745814, y: 54.52498}, {x: 0.3603407945150203, y: 4.8415}, {x: 1.2717136015325643, y: 2.716}, {x: 0.1628441060381238, y: 19.187}, {x: 3.71747211867045e-05, y: 0.023}, {x: 0.022605301379808186, y: 0.305}], 'label': 'Partially Treated', 'backgroundColor': 'rgba(44, 160, 44,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.5714212554031168, y: 0.028}, {x: 1.1642063579498825, y: 0.409}, {x: 1.3667586206896518, y: 0.048}, {x: 0.406848226424419, y: 2.786598}, {x: 1.3900428767628012, y: 0.258}, {x: 1.3599532710280342, y: 0.258}, {x: 0.058823231858729494, y: 0.0002}, {x: 0.02988642743014759, y: 0.001875}, {x: 0.004839513316292991, y: 0.336}, {x: 0.5014874448916969, y: 5e-05}, {x: 0.10718367346938448, y: 0.387165}, {x: 0.33999550075392443, y: 0.067}, {x: 0.7837780406589522, y: 0.03}, {x: 0.3367617310562065, y: 2.5e-05}, {x: 1.7575225806451582, y: 0.0039}, {x: 0.1863053904923567, y: 0.00375}, {x: 0.40361468161720826, y: 0.0031}, {x: 0.37101638349514243, y: 0.00016}, {x: 0.9584617248061983, y: 0.0524}, {x: 0.23709302325581078, y: 0.0016}, {x: 0.07624667258207309, y: 0.15606}, {x: 0.07410527996593239, y: 0.00086}, {x: 0.8042620676177415, y: 0.09001}, {x: 0.1985696971008658, y: 1.45868}, {x: 0.0769010940178143, y: 0.016}, {x: 0.21288039148742138, y: 0.028715}, {x: 0.017611849700659682, y: 0.102521}, {x: 1.6291390754838995, y: 0.001717}, {x: 0.4419805194805163, y: 0.008188}, {x: 0.63965517241379, y: 0.001158}, {x: 0.2967167220376492, y: 0.05769}, {x: 0.005076027559987291, y: 0.75}, {x: 0.6253151071749422, y: 0.0015}, {x: 0.4638893728222964, y: 5e-05}, {x: 0.07530258259655319, y: 0.003}, {x: 0.04397130289065427, y: 14.548}, {x: 1.540725856386694, y: 0.305}, {x: 0.5715691948421124, y: 38.004923}, {x: 0.02928781028424299, y: 1.5546}, {x: 0.5391113175748641, y: 0.03675}, {x: 0.02876558292609629, y: 0.006}, {x: 1.4406608300907884, y: 0.005}, {x: 0.009121951219509213, y: 0.00055}, {x: 0.3603407945150203, y: 91.624}], 'label': 'SSO', 'backgroundColor': 'rgba(214, 39, 40,0.45)', 'pointRadius': 3, 'yAxisID': 'y'}] + datasets: [{'data': [{x: 0.04398744620598642, y: 2.386362}, {x: 0.16146213108924684, y: 0.021273}, {x: 0.012930662557778324, y: 0.292951}, {x: 0.19334818775994964, y: 0.1}, {x: 0.0022244904902832246, y: 0.04}, {x: 0.0, y: 14.988289}, {x: 0.010166666666663824, y: 5.809919}, {x: 0.14897212741751703, y: 0.1348}, {x: 0.002378141437752916, y: 14.006946}, {x: 0.05058153126826132, y: 12.332009}, {x: 0.4275777816634581, y: 0.029377}, {x: 0.05990872852233399, y: 64.235084}, {x: 0.021667367978116293, y: 0.551}, {x: 0.05948071900445252, y: 0.206914}, {x: 0.043937681159417416, y: 0.459}, {x: 0.177012769838854, y: 1.347}, {x: 0.18013581155686129, y: 0.567375}, {x: 0.11958786797501943, y: 37.910347}, {x: 0.17501242937852823, y: 0.021439}, {x: 0.3003201783723494, y: 0.83}, {x: 0.030151688708386828, y: 15.203807}, {x: 0.08265066756802143, y: 21.031316}, {x: 0.4053757354252066, y: 5.08615}, {x: 0.0037341772151870244, y: 3.983965}, {x: 0.009029126213589424, y: 89.991602}, {x: 0.3464190633205077, y: 13.669269}, {x: 0.0024671881790498352, y: 1.02853}, {x: 0.17081355932203113, y: 40.40906}, {x: 0.004428231218875864, y: 14.806652}, {x: 0.07978846462193644, y: 2.544}, {x: 0.4755151908540771, y: 0.57}, {x: 0.497006261030336, y: 45.501642}, {x: 1.037925925925923, y: 0.0}, {x: 0.0023188203877829135, y: 8.105}, {x: 0.1352962573591224, y: 0.21}, {x: 0.0005016722407997134, y: 7.370675}, {x: 0.3125106583072071, y: 13.222176}, {x: 0.04458591549295481, y: 13.821422}, {x: 0.009634618973899915, y: 19.88247}, {x: 0.07980808788130471, y: 14.428166}, {x: 0.45309253525971493, y: 3.231572}, {x: 0.04039738562091201, y: 6.06003}, {x: 0.0016939091002753713, y: 3.29512}, {x: 0.01852856841661107, y: 10.510136}, {x: 0.2340433205802617, y: 0.00016}, {x: 0.448749999999997, y: 6.904942}, {x: 0.0007039143156818135, y: 0.06162}, {x: 6.514657980167368e-05, y: 45.491973}, {x: 0.04928104575163102, y: 3.808293}, {x: 0.862169244509395, y: 2.21405}, {x: 0.3899601847427905, y: 2.17717}, {x: 0.2606462585033984, y: 13.596332}, {x: 0.027734396231539712, y: 5.484528}, {x: 0.5042960911371209, y: 17.675047}, {x: 0.7055882615288527, y: 6.67505}, {x: 0.013637118298549014, y: 24.786637}, {x: 0.020018895826484015, y: 41.664277}, {x: 0.5714212554031168, y: 0.001139}, {x: 0.00020338983050529138, y: 31.401484}, {x: 0.024374999999996892, y: 30.957375}, {x: 1.2257061688311657, y: 0.9154}, {x: 1.6362224731789916, y: 0.00173}, {x: 0.0, y: 2.795936}, {x: 0.03992395437262039, y: 0.73266}, {x: 0.44779124366861267, y: 1.976917}, {x: 0.06656267384342125, y: 0.833941}, {x: 0.7914620277071627, y: 1.455466}, {x: 0.3538597186447363, y: 0.370801}, {x: 0.006226382324112592, y: 27.038811}, {x: 0.07880732624457679, y: 14.99121}, {x: 0.2677423632705292, y: 0.56528}, {x: 0.1005571415126862, y: 22.982991}, {x: 0.09854013603380829, y: 1.03359}, {x: 1.1777329192546553, y: 21.446277}, {x: 0.19162623623810088, y: 8.733693}, {x: 1.0403218884120138, y: 0.000304}, {x: 1.3667586206896518, y: 68.579833}, {x: 0.406848226424419, y: 42.742257}, {x: 1.3900428767628012, y: 0.004}, {x: 0.004839513316292991, y: 0.051}, {x: 0.04199886569872629, y: 0.24484}, {x: 0.0008299283757118914, y: 0.03496}, {x: 0.0018263804651622278, y: 1.297309}, {x: 0.13415774581773768, y: 0.04134}, {x: 0.05171891906888669, y: 7.25509}, {x: 0.2435396919024921, y: 0.670365}, {x: 0.06092956694872748, y: 1.62298}, {x: 0.5062574098261798, y: 2.071931}, {x: 0.3190022010271428, y: 19.71011}, {x: 0.0012320886660476804, y: 0.221445}, {x: 0.20879614428797016, y: 50.08257}, {x: 0.10718367346938448, y: 48.827787}, {x: 1.4185483276643958, y: 0.768}, {x: 2.440360809178741, y: 0.023}, {x: 0.009094076655049091, y: 0.09641}, {x: 0.00010135135134819137, y: 0.00869}, {x: 0.05399730367374139, y: 1.734085}, {x: 0.2047433918579942, y: 1.632385}, {x: 0.2079412041613677, y: 0.009516}, {x: 0.022968502086145835, y: 5.540923}, {x: 0.29735157945502455, y: 0.664795}, {x: 0.017643366111844833, y: 0.08735}, {x: 0.0, y: 4.199654}, {x: 0.0025783972125403357, y: 4.136761}, {x: 0.0002439323664352387, y: 7.991253}, {x: 0.013672320587211038, y: 46.862818}, {x: 0.10873748006379258, y: 22.555311}, {x: 0.09991374269005518, y: 77.407371}, {x: 0.7837780406589522, y: 0.327422}, {x: 2.0588966661233226, y: 3.117997}, {x: 0.01117165795845219, y: 1.02383}, {x: 0.0, y: 76.370564}, {x: 0.1283225806451582, y: 15.337338}, {x: 0.01200855310049569, y: 0.460828}, {x: 3.1948881786028757e-05, y: 4.107151}, {x: 0.02653124999999689, y: 0.447444}, {x: 0.1863053904923567, y: 0.5519}, {x: 0.12614911837578757, y: 0.231244}, {x: 0.06704557091653539, y: 5.294564}, {x: 0.07186694172253419, y: 2.706549}, {x: 0.2664448638004563, y: 0.1}, {x: 0.34443030303029976, y: 0.448397}, {x: 0.16176195286194958, y: 0.8062}, {x: 0.22994903994903668, y: 13.132424}, {x: 0.2736503054778885, y: 0.024727}, {x: 0.5240919540229853, y: 4.223861}, {x: 0.47353568007662505, y: 12.376726}, {x: 0.863527686818823, y: 2.608493}, {x: 0.013314348995408891, y: 6.448695}, {x: 0.40361468161720826, y: 54.985995}, {x: 0.37101638349514243, y: 22.999942}, {x: 0.9584617248061983, y: 59.631272}, {x: 0.004290674603171392, y: 38.245635}, {x: 0.23709302325581078, y: 29.923282}, {x: 1.4594999496627372, y: 19.988466}, {x: 0.7535597484276698, y: 0.0056}, {x: 0.03469177489177169, y: 22.112844}, {x: 0.03744279529993489, y: 4.108909}, {x: 0.07624667258207309, y: 14.393118}, {x: 1.3538986383668274, y: 0.48107}, {x: 0.9177496306089089, y: 12.755603}, {x: 0.07410527996593239, y: 28.413219}, {x: 0.5772989392478269, y: 1.19653}, {x: 0.8042620676177415, y: 100.785405}, {x: 0.7951160626359444, y: 0.021538}, {x: 1.8386041299345517, y: 1.794867}, {x: 0.2062108931141549, y: 0.0}, {x: 0.1985696971008658, y: 89.318126}, {x: 0.0769010940178143, y: 0.072}, {x: 0.856395255890167, y: 0.009781}, {x: 0.0030894512653438914, y: 55.749592}, {x: 0.06911280412877539, y: 0.1441}, {x: 0.4160995903486904, y: 22.673727}, {x: 0.21288039148742138, y: 140.908629}, {x: 0.294385409336145, y: 0.02}, {x: 0.013451937383162381, y: 0.271819}, {x: 0.017611849700659682, y: 129.800005}, {x: 1.6291390754838995, y: 74.413025}, {x: 0.43470569013134, y: 6.493684}, {x: 0.2271787574763619, y: 17.27786}, {x: 0.4419805194805163, y: 89.667368}, {x: 0.9036271929824528, y: 1.190627}, {x: 0.021458763187034192, y: 1.35948}, {x: 0.2019805825242687, y: 0.235754}, {x: 0.010199964845887392, y: 19.665016}, {x: 0.6741912698718163, y: 0.27}, {x: 0.04193644772396269, y: 0.624938}, {x: 0.04900504089549709, y: 10.406746}, {x: 0.2916187004484845, y: 0.00673}, {x: 0.0011391406780306126, y: 1.158494}, {x: 0.04795774784190439, y: 2.987236}, {x: 0.4107686482030013, y: 55.978054}, {x: 0.63965517241379, y: 68.086431}, {x: 0.842413414276105, y: 0.04951}, {x: 1.4162005466839274, y: 4.902946}, {x: 0.5665817098822434, y: 0.285999}, {x: 0.21864110682512108, y: 100.362695}, {x: 0.0007277552451021914, y: 4.354436}, {x: 0.03894509676016209, y: 1.590639}, {x: 0.4301465233223481, y: 1.259388}, {x: 0.005076027559987291, y: 69.139044}, {x: 0.13522911654450528, y: 14.904492}, {x: 0.0021999999999967918, y: 0.108}, {x: 0.009110798122062492, y: 3.577282}, {x: 0.3863792124195349, y: 0.16886}, {x: 0.012867425510542436, y: 0.04904}, {x: 0.045663126828108136, y: 6.769284}, {x: 0.03688074404943684, y: 32.034277}, {x: 1.3780991507430969, y: 0.16583}, {x: 0.0015309058989510804, y: 0.02}, {x: 0.0004883222172434804, y: 1.321154}, {x: 0.03639095373248308, y: 10.03245}, {x: 0.9237381324360021, y: 0.007318}, {x: 0.00535123042505258, y: 0.181439}, {x: 0.1322420634920602, y: 0.082722}, {x: 0.007245370677636494, y: 17.278725}, {x: 0.00017780974735299277, y: 1.228166}, {x: 0.007270955873450693, y: 5.599912}, {x: 0.08200407912673069, y: 0.569479}, {x: 0.18439853184939298, y: 0.005424}, {x: 0.00036266381967788036, y: 25.419251}, {x: 0.07530258259655319, y: 69.364677}, {x: 0.00036764705882016936, y: 2.72}, {x: 0.0005519480519446693, y: 81.933924}, {x: 0.04397130289065427, y: 131.266567}, {x: 1.540725856386694, y: 8.1}, {x: 0.03753451031676497, y: 1.435439}, {x: 0.03225225225224887, y: 10.250246}, {x: 0.4662999999999966, y: 0.001301}, {x: 0.01099327427821177, y: 1.50235}, {x: 1.0699467696482587, y: 153.432602}, {x: 0.5715691948421124, y: 165.064711}, {x: 0.02928781028424299, y: 80.659813}, {x: 0.3416163003662971, y: 10.438263}, {x: 0.004975457111298795, y: 18.897537}, {x: 0.20095013644256698, y: 0.111817}, {x: 0.7702742027830991, y: 12.253912}, {x: 0.6479750657698606, y: 8.852955}, {x: 0.02921565037944029, y: 0.0}, {x: 0.02451737451737139, y: 2.05363}, {x: 0.0009558823529379914, y: 1.81508}, {x: 0.00010989010988699137, y: 19.00464}, {x: 0.013443223443220291, y: 6.512919}, {x: 0.4693672316384149, y: 0.55}, {x: 0.3606009030424905, y: 9.368536}, {x: 0.104782608695649, y: 0.05}, {x: 1.1193698187777104, y: 4.687424}, {x: 0.053590358875909995, y: 37.842971}, {x: 0.36287438625204266, y: 3.157449}, {x: 1.5864069441197073, y: 15.557648}, {x: 0.1561755053819868, y: 0.078}, {x: 0.06024544293824889, y: 39.074916}, {x: 0.05571663081625421, y: 2.073886}, {x: 1.3297104858022548, y: 0.328}, {x: 0.014796283441017792, y: 5.262768}, {x: 0.1942765544241072, y: 0.048014}, {x: 0.005345452578041492, y: 4.330398}, {x: 0.0883567006335638, y: 3.844331}, {x: 0.011983612077671091, y: 0.361349}, {x: 0.1872619590471816, y: 0.279198}, {x: 0.0017434210526283914, y: 0.755196}, {x: 0.05537888198757449, y: 0.953377}, {x: 0.4722573196544463, y: 7.258815}, {x: 0.05137342475012959, y: 1.57481}, {x: 0.3344376387993377, y: 0.063592}, {x: 0.056552262608807996, y: 0.243365}, {x: 0.3627221247807535, y: 0.054}, {x: 0.04798167475458919, y: 2.258552}, {x: 0.7769665638793125, y: 3.497437}, {x: 0.009035708667607325, y: 1.076285}, {x: 0.03080194518125229, y: 0.011493}, {x: 0.1845803713527819, y: 0.079057}, {x: 0.0022582078185785916, y: 34.150032}, {x: 0.04217541429631139, y: 0.000367}, {x: 0.00019088123840694453, y: 0.599335}, {x: 0.002817463516887891, y: 1.87477}, {x: 0.12773861370018808, y: 7.500272}, {x: 0.44757278706789233, y: 3.956328}, {x: 0.7383619664331937, y: 0.885436}, {x: 0.12355399362461525, y: 4.209}, {x: 0.010965290930710903, y: 11.537352}, {x: 0.0022066338169510025, y: 1.567161}, {x: 0.1828076227029228, y: 0.140609}, {x: 0.4938162385485869, y: 0.05}, {x: 0.17568365773266226, y: 0.7}, {x: 0.04375308145091996, y: 1.822583}, {x: 0.4338808903514755, y: 1.777898}, {x: 0.2858656840812356, y: 0.310627}, {x: 0.12055982711061565, y: 1.352369}, {x: 0.02876558292609629, y: 0.078324}, {x: 0.2163272200772169, y: 0.058985}, {x: 0.01112806840121029, y: 1.153856}, {x: 0.46915024277364875, y: 2.434355}, {x: 0.3283461538461506, y: 0.140918}, {x: 0.466241928540677, y: 0.541152}, {x: 0.5497809209492346, y: 0.127064}, {x: 0.8699140989729193, y: 0.136644}, {x: 0.7723585434173637, y: 0.676583}, {x: 0.5229908316549146, y: 0.145146}, {x: 0.046979744159454884, y: 16.469719}, {x: 0.3991397990388784, y: 0.27723}, {x: 0.13211555338858777, y: 2.641118}, {x: 0.0017270833333301915, y: 6.091944}, {x: 0.0002184829110696069, y: 0.098404}, {x: 0.03704598894854099, y: 0.22}, {x: 0.3142550354271125, y: 4.873268}, {x: 0.005730897009963591, y: 6.432674}, {x: 0.01078702131672949, y: 0.5828}, {x: 0.025770622114328793, y: 0.087195}, {x: 0.003785238914227017, y: 0.000417}, {x: 0.127115512259875, y: 0.016161}, {x: 0.0028546109172756335, y: 0.399984}, {x: 0.10509620406542813, y: 0.04}, {x: 1.1949181700540425, y: 0.331269}, {x: 0.2129642738174518, y: 8.333192}, {x: 0.03716431675762816, y: 1.762442}, {x: 0.09600323141933605, y: 1.368648}, {x: 0.0007451188454981354, y: 0.058895}, {x: 0.6741146089522845, y: 0.000427}, {x: 0.0011510735773003354, y: 0.699472}, {x: 0.06287773569023293, y: 0.022202}, {x: 0.00023489932885633548, y: 0.623608}, {x: 0.8495805006755796, y: 0.13583}, {x: 0.012756087981144136, y: 7.090504}, {x: 0.012670134201537836, y: 0.282527}, {x: 0.015910621674409636, y: 0.017117}, {x: 0.10700314865679361, y: 14.635388}, {x: 0.1688076144700199, y: 13.73283}, {x: 0.029195137071219124, y: 12.226141}, {x: 0.06228465244726202, y: 0.005483}, {x: 0.00020668356033925691, y: 2.418181}, {x: 0.13181617647058544, y: 0.019932}, {x: 0.027616438356161524, y: 0.158714}, {x: 0.012033713315544124, y: 9.241567}, {x: 0.23991554054053774, y: 6.523465}, {x: 0.0, y: 20.601979}, {x: 0.671402048655567, y: 0.000164}, {x: 0.0021245421245393243, y: 0.259201}, {x: 0.26685157874834275, y: 10.850603}, {x: 0.05440928270041902, y: 0.001449}, {x: 0.1853256704980814, y: 9.3e-05}, {x: 0.0531799336650054, y: 3.909926}, {x: 0.0, y: 0.364366}, {x: 0.08261075559930792, y: 3.785017}, {x: 0.1097491167803562, y: 0.004309}, {x: 0.5152105119163395, y: 0.035073}, {x: 0.6358676524501986, y: 0.0304}, {x: 0.48475265750583063, y: 0.008664}, {x: 0.0, y: 0.000341}, {x: 0.0021212121212092136, y: 0.085089}, {x: 0.025940307598596113, y: 3.288873}, {x: 0.06405075570904421, y: 0.243703}, {x: 0.6548855063855036, y: 20.218979}, {x: 0.8074892840857244, y: 0.003033}, {x: 0.8384888668975725, y: 8.390245}, {x: 0.018459954233406614, y: 0.2678}, {x: 0.007117003367000313, y: 7.345282}, {x: 0.015881057268719512, y: 24.768891}, {x: 0.35716893605659833, y: 0.0}, {x: 0.0007958301158272135, y: 2.070048}, {x: 0.1623889950539539, y: 17.897952}, {x: 0.19992805755395393, y: 16.403819}, {x: 0.04558632450868631, y: 0.282169}, {x: 3.745318351771267e-05, y: 1.035405}], 'label': 'CSO – Untreated', 'backgroundColor': 'rgba(31, 119, 180,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.04398744620598642, y: 0.51}, {x: 0.012930662557778324, y: 0.047198}, {x: 0.0, y: 0.165}, {x: 0.010166666666663824, y: 0.006283}, {x: 0.14897212741751703, y: 5.539}, {x: 0.002378141437752916, y: 3.523}, {x: 0.05990872852233399, y: 0.777977}, {x: 0.11958786797501943, y: 1.25}, {x: 0.08265066756802143, y: 1.612397}, {x: 0.4053757354252066, y: 2.636}, {x: 0.0037341772151870244, y: 1.07}, {x: 0.3464190633205077, y: 18.54409}, {x: 0.17081355932203113, y: 1.04}, {x: 0.004428231218875864, y: 0.19}, {x: 0.07978846462193644, y: 0.379}, {x: 0.497006261030336, y: 8.598}, {x: 0.0023188203877829135, y: 0.7}, {x: 0.0005016722407997134, y: 0.968}, {x: 0.3125106583072071, y: 4.322}, {x: 0.04458591549295481, y: 7.199}, {x: 0.009634618973899915, y: 3.592}, {x: 0.07980808788130471, y: 17.43}, {x: 0.45309253525971493, y: 0.18}, {x: 0.448749999999997, y: 0.89}, {x: 6.514657980167368e-05, y: 10.160915}, {x: 0.04928104575163102, y: 0.1}, {x: 0.2606462585033984, y: 4.86}, {x: 0.027734396231539712, y: 0.94}, {x: 0.5042960911371209, y: 13.054}, {x: 0.7055882615288527, y: 0.207}, {x: 0.013637118298549014, y: 1.337}, {x: 0.020018895826484015, y: 17.09}, {x: 0.00020338983050529138, y: 3.892}, {x: 0.024374999999996892, y: 16.11}, {x: 0.0, y: 0.222}, {x: 0.44779124366861267, y: 0.191}, {x: 0.06656267384342125, y: 0.0006}, {x: 0.006226382324112592, y: 3.154}, {x: 0.1005571415126862, y: 11.131}, {x: 0.09854013603380829, y: 0.924}, {x: 1.1777329192546553, y: 0.95}, {x: 0.19162623623810088, y: 7.735}, {x: 1.3667586206896518, y: 18.589}, {x: 0.406848226424419, y: 32.876}, {x: 0.2435396919024921, y: 0.31}, {x: 0.5062574098261798, y: 1.6}, {x: 0.3190022010271428, y: 1.417}, {x: 0.20879614428797016, y: 4.627}, {x: 0.10718367346938448, y: 93.37}, {x: 0.2079412041613677, y: 0.54}, {x: 0.022968502086145835, y: 4.617}, {x: 0.013672320587211038, y: 26.066}, {x: 0.09991374269005518, y: 25.453}, {x: 2.0588966661233226, y: 0.389}, {x: 0.01117165795845219, y: 0.013}, {x: 0.0, y: 32.385}, {x: 0.1283225806451582, y: 20.86}, {x: 3.1948881786028757e-05, y: 0.02}, {x: 0.07186694172253419, y: 0.17}, {x: 0.34443030303029976, y: 0.01}, {x: 0.22994903994903668, y: 1.1}, {x: 0.47353568007662505, y: 3.807}, {x: 0.40361468161720826, y: 0.012}, {x: 0.37101638349514243, y: 2.032}, {x: 0.9584617248061983, y: 7.29}, {x: 1.105131626462513, y: 3.112}, {x: 0.004290674603171392, y: 4.273}, {x: 0.23709302325581078, y: 10.205}, {x: 0.03744279529993489, y: 1.034}, {x: 0.07624667258207309, y: 30.176}, {x: 0.9177496306089089, y: 2.215}, {x: 0.07410527996593239, y: 5.481}, {x: 0.8042620676177415, y: 51.652}, {x: 1.8386041299345517, y: 6.344}, {x: 0.1985696971008658, y: 56.802}, {x: 0.0030894512653438914, y: 7.67}, {x: 0.4160995903486904, y: 1.116}, {x: 0.21288039148742138, y: 122.186}, {x: 0.017611849700659682, y: 67.975}, {x: 1.6291390754838995, y: 2.263}, {x: 0.43470569013134, y: 0.04}, {x: 0.2271787574763619, y: 5.646}, {x: 0.4419805194805163, y: 15.613}, {x: 0.9036271929824528, y: 0.61}, {x: 0.010199964845887392, y: 38.805}, {x: 0.6741912698718163, y: 0.16}, {x: 0.04900504089549709, y: 3.095}, {x: 0.0011391406780306126, y: 3.977}, {x: 0.04795774784190439, y: 1.496}, {x: 0.4107686482030013, y: 4.943}, {x: 0.63965517241379, y: 5.179}, {x: 1.4162005466839274, y: 0.83}, {x: 0.21864110682512108, y: 60.28}, {x: 0.4301465233223481, y: 1.186}, {x: 0.005076027559987291, y: 32.41887}, {x: 0.13522911654450528, y: 1.63}, {x: 0.009110798122062492, y: 3.07}, {x: 0.03688074404943684, y: 2.35}, {x: 0.1322420634920602, y: 5.83}, {x: 0.007245370677636494, y: 1.639}, {x: 0.007270955873450693, y: 3.501}, {x: 0.08200407912673069, y: 0.21}, {x: 0.00036266381967788036, y: 35.52}, {x: 0.07530258259655319, y: 56.27}, {x: 0.0005519480519446693, y: 5.224}, {x: 0.04397130289065427, y: 160.701}, {x: 0.03225225225224887, y: 2.343}, {x: 1.0699467696482587, y: 28.786}, {x: 0.5715691948421124, y: 108.015588}, {x: 0.02928781028424299, y: 63.1}, {x: 0.3416163003662971, y: 2.333}, {x: 0.004975457111298795, y: 2.787}, {x: 0.20095013644256698, y: 2.013}, {x: 0.7702742027830991, y: 6.299}, {x: 0.6479750657698606, y: 1.6458}, {x: 0.00010989010988699137, y: 2.29}, {x: 0.013443223443220291, y: 2.22}, {x: 0.4693672316384149, y: 0.479}, {x: 0.36287438625204266, y: 0.75}, {x: 0.1561755053819868, y: 0.4}, {x: 0.06024544293824889, y: 5.51}, {x: 0.4722573196544463, y: 1.318}, {x: 0.05137342475012959, y: 1.301}, {x: 0.04798167475458919, y: 1.306}, {x: 0.7769665638793125, y: 3.412}, {x: 0.0022582078185785916, y: 1.35}, {x: 0.44757278706789233, y: 1.339}, {x: 0.12355399362461525, y: 6.5}, {x: 0.010965290930710903, y: 0.134}, {x: 0.4338808903514755, y: 0.299}, {x: 0.46915024277364875, y: 0.568}, {x: 0.03704598894854099, y: 0.268}, {x: 0.3142550354271125, y: 1.571}, {x: 0.005730897009963591, y: 1.352}, {x: 0.01078702131672949, y: 4.293}, {x: 0.10509620406542813, y: 0.474}, {x: 1.1949181700540425, y: 0.413}, {x: 0.2129642738174518, y: 1.457}, {x: 0.0008724120000396354, y: 3.164}, {x: 0.00023489932885633548, y: 20.774}, {x: 0.8495805006755796, y: 7.847}, {x: 0.012756087981144136, y: 3.78}, {x: 0.012670134201537836, y: 0.137}, {x: 0.10700314865679361, y: 0.471}, {x: 0.1688076144700199, y: 0.013}, {x: 0.029195137071219124, y: 3.623}, {x: 0.00020668356033925691, y: 0.249}, {x: 0.027616438356161524, y: 0.044}, {x: 0.012033713315544124, y: 0.852}, {x: 0.23991554054053774, y: 1.067}, {x: 0.0, y: 1.864}, {x: 0.26685157874834275, y: 2.335}, {x: 0.0531799336650054, y: 0.231}, {x: 0.08261075559930792, y: 0.041}, {x: 0.6548855063855036, y: 10.696}, {x: 0.8074892840857244, y: 1.118}, {x: 0.8384888668975725, y: 0.815}, {x: 0.07763941769316611, y: 0.272}, {x: 0.015881057268719512, y: 6.61}, {x: 0.1623889950539539, y: 4.923}], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(255, 127, 14,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.010166666666663824, y: 1.0}, {x: 0.05058153126826132, y: 5.879}, {x: 0.05990872852233399, y: 8.01}, {x: 0.043937681159417416, y: 2.98}, {x: 0.11958786797501943, y: 11.5}, {x: 0.030151688708386828, y: 0.4}, {x: 0.0037341772151870244, y: 3.2}, {x: 0.009029126213589424, y: 73.07}, {x: 0.3464190633205077, y: 7.72}, {x: 0.0024671881790498352, y: 0.06}, {x: 0.17081355932203113, y: 5.79}, {x: 0.004428231218875864, y: 9.93}, {x: 0.497006261030336, y: 37.4014}, {x: 0.0023188203877829135, y: 1.8}, {x: 0.0005016722407997134, y: 7.74}, {x: 0.3125106583072071, y: 3.3}, {x: 0.04458591549295481, y: 2.5}, {x: 0.009634618973899915, y: 27.29}, {x: 0.07980808788130471, y: 11.97}, {x: 0.45309253525971493, y: 7.38}, {x: 0.0016939091002753713, y: 0.15}, {x: 0.448749999999997, y: 3.0}, {x: 6.514657980167368e-05, y: 1.27}, {x: 0.04928104575163102, y: 0.82}, {x: 0.862169244509395, y: 0.22}, {x: 0.2606462585033984, y: 5.15}, {x: 0.027734396231539712, y: 3.33}, {x: 0.5042960911371209, y: 22.37}, {x: 0.7055882615288527, y: 3.6}, {x: 0.013637118298549014, y: 19.44}, {x: 0.020018895826484015, y: 60.19}, {x: 0.00020338983050529138, y: 75.45}, {x: 0.024374999999996892, y: 35.91}, {x: 0.0, y: 0.86}, {x: 0.44779124366861267, y: 1.66}, {x: 0.06656267384342125, y: 0.49}, {x: 0.006226382324112592, y: 10.53}, {x: 0.1005571415126862, y: 16.48}, {x: 0.09854013603380829, y: 3.09}, {x: 1.1777329192546553, y: 22.1}, {x: 0.19162623623810088, y: 39.49}, {x: 1.3667586206896518, y: 47.782}, {x: 0.406848226424419, y: 159.68}, {x: 0.004839513316292991, y: 0.89}, {x: 0.05171891906888669, y: 0.4}, {x: 0.2435396919024921, y: 1.3}, {x: 0.5062574098261798, y: 2.81}, {x: 0.3190022010271428, y: 11.32}, {x: 0.20879614428797016, y: 168.87}, {x: 0.10718367346938448, y: 424.03}, {x: 0.2047433918579942, y: 1.05}, {x: 0.022968502086145835, y: 10.05}, {x: 0.29735157945502455, y: 0.25}, {x: 0.0, y: 0.667}, {x: 0.013672320587211038, y: 46.34}, {x: 0.09991374269005518, y: 101.8881}, {x: 2.0588966661233226, y: 15.7}, {x: 0.01117165795845219, y: 1.4}, {x: 0.0, y: 61.65}, {x: 0.1283225806451582, y: 36.013}, {x: 0.01200855310049569, y: 4.8}, {x: 3.1948881786028757e-05, y: 5.35}, {x: 0.06704557091653539, y: 6.98}, {x: 0.22994903994903668, y: 3.73}, {x: 0.2736503054778885, y: 0.45}, {x: 0.47353568007662505, y: 2.26}, {x: 0.013314348995408891, y: 8.28}, {x: 0.14959447159145028, y: 2.87}, {x: 0.40361468161720826, y: 9.89}, {x: 0.37101638349514243, y: 18.78}, {x: 0.9584617248061983, y: 26.13}, {x: 0.004290674603171392, y: 36.7}, {x: 0.23709302325581078, y: 0.13}, {x: 1.4594999496627372, y: 6.65}, {x: 0.07624667258207309, y: 16.085}, {x: 0.07410527996593239, y: 14.34}, {x: 0.5772989392478269, y: 0.81}, {x: 0.8042620676177415, y: 48.98}, {x: 1.8386041299345517, y: 0.06}, {x: 0.1985696971008658, y: 58.91}, {x: 0.0030894512653438914, y: 10.24}, {x: 0.21288039148742138, y: 18.781}, {x: 0.017611849700659682, y: 81.05}, {x: 1.6291390754838995, y: 14.69}, {x: 0.43470569013134, y: 0.16}, {x: 0.2271787574763619, y: 13.86}, {x: 0.4419805194805163, y: 97.728}, {x: 0.021458763187034192, y: 1.4}, {x: 0.010199964845887392, y: 67.63}, {x: 0.6741912698718163, y: 6.8}, {x: 0.6011719317356541, y: 37.08}, {x: 0.04900504089549709, y: 10.07}, {x: 0.0011391406780306126, y: 5.06}, {x: 0.4107686482030013, y: 6.54}, {x: 0.63965517241379, y: 15.31}, {x: 1.4162005466839274, y: 7.32}, {x: 0.21864110682512108, y: 114.1}, {x: 0.4301465233223481, y: 1.55}, {x: 0.8487853595994921, y: 27.98}, {x: 0.2025848468170946, y: 0.072}, {x: 0.005076027559987291, y: 14.93}, {x: 0.13522911654450528, y: 5.5}, {x: 0.03688074404943684, y: 10.64}, {x: 0.00535123042505258, y: 0.61}, {x: 0.007245370677636494, y: 36.63}, {x: 0.007270955873450693, y: 6.2}, {x: 0.08200407912673069, y: 8.87}, {x: 0.00036266381967788036, y: 10.21}, {x: 0.07530258259655319, y: 185.44}, {x: 0.0005519480519446693, y: 140.5}, {x: 0.04397130289065427, y: 318.905}, {x: 2.740869001547984, y: 11.254}, {x: 1.2440761986301334, y: 15.34}, {x: 0.03225225225224887, y: 12.54}, {x: 0.4662999999999966, y: 4.56}, {x: 1.0699467696482587, y: 497.34}, {x: 0.5715691948421124, y: 8.236964}, {x: 2.5219945455659705, y: 165.15}, {x: 0.02928781028424299, y: 276.452483}, {x: 0.8945985440877835, y: 25.21}, {x: 0.3416163003662971, y: 23.01}, {x: 0.004975457111298795, y: 26.58}, {x: 0.7702742027830991, y: 48.43}, {x: 0.6479750657698606, y: 30.02}, {x: 0.3541714877679464, y: 12.32333}, {x: 3.703703703392842e-05, y: 176.53}, {x: 0.0009558823529379914, y: 0.428482}, {x: 0.013443223443220291, y: 16.95}, {x: 0.4693672316384149, y: 3.7}, {x: 1.2271076389976068, y: 0.025053}, {x: 0.3739465799621084, y: 9.0}, {x: 0.08624999999999679, y: 100.0004}, {x: 0.2746508643841853, y: 0.19}, {x: 0.010965290930710903, y: 2.21}, {x: 0.2858656840812356, y: 6.84}, {x: 0.3407139176364464, y: 0.021042}, {x: 0.46915024277364875, y: 4.2}, {x: 0.3991397990388784, y: 0.2}, {x: 3.0030030026921405e-05, y: 0.0003}, {x: 0.03704598894854099, y: 1.898429}, {x: 0.3142550354271125, y: 8.761175}, {x: 0.005730897009963591, y: 4.768568}, {x: 0.01078702131672949, y: 4.4}, {x: 0.0028546109172756335, y: 6.5}, {x: 0.2129642738174518, y: 4.9}, {x: 0.03716431675762816, y: 0.0}, {x: 0.10700314865679361, y: 4.29}, {x: 0.1688076144700199, y: 8.44}, {x: 0.029195137071219124, y: 13.69}, {x: 0.00020668356033925691, y: 2.369}, {x: 0.012033713315544124, y: 4.011}, {x: 0.23991554054053774, y: 8.77}, {x: 0.0, y: 18.12}, {x: 0.26685157874834275, y: 17.11}, {x: 0.0531799336650054, y: 2.218}, {x: 0.0, y: 0.177}, {x: 0.08261075559930792, y: 0.538}, {x: 0.6548855063855036, y: 69.45}, {x: 0.8384888668975725, y: 5.139}, {x: 0.07763941769316611, y: 0.98332}, {x: 0.018459954233406614, y: 3.0293}, {x: 0.0027504025764865134, y: 391.22}, {x: 0.007117003367000313, y: 8.88}, {x: 0.1984762197262167, y: 2.7048}, {x: 0.015881057268719512, y: 54.52498}, {x: 0.35716893605659833, y: 4.8415}, {x: 1.2749403610573793, y: 2.716}, {x: 0.1623889950539539, y: 19.187}, {x: 3.745318351771267e-05, y: 0.023}, {x: 0.022176683149483515, y: 0.305}], 'label': 'Partially Treated', 'backgroundColor': 'rgba(44, 160, 44,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.5714212554031168, y: 0.028}, {x: 1.1642063579498825, y: 0.409}, {x: 1.3667586206896518, y: 0.048}, {x: 0.406848226424419, y: 2.786598}, {x: 1.3900428767628012, y: 0.258}, {x: 1.3599532710280342, y: 0.258}, {x: 0.058823231858729494, y: 0.0002}, {x: 0.02988642743014759, y: 0.001875}, {x: 0.004839513316292991, y: 0.336}, {x: 0.5014874448916969, y: 5e-05}, {x: 0.10718367346938448, y: 0.387165}, {x: 0.33999550075392443, y: 0.067}, {x: 0.7837780406589522, y: 0.03}, {x: 0.3367617310562065, y: 2.5e-05}, {x: 1.7575225806451582, y: 0.0039}, {x: 0.1863053904923567, y: 0.00375}, {x: 0.40361468161720826, y: 0.0031}, {x: 0.37101638349514243, y: 0.00016}, {x: 0.9584617248061983, y: 0.0524}, {x: 0.23709302325581078, y: 0.0016}, {x: 0.07624667258207309, y: 0.15606}, {x: 0.07410527996593239, y: 0.00086}, {x: 0.8042620676177415, y: 0.09001}, {x: 0.1985696971008658, y: 1.45868}, {x: 0.0769010940178143, y: 0.016}, {x: 0.21288039148742138, y: 0.028715}, {x: 0.017611849700659682, y: 0.102521}, {x: 1.6291390754838995, y: 0.001717}, {x: 0.4419805194805163, y: 0.008188}, {x: 0.63965517241379, y: 0.001158}, {x: 0.2967167220376492, y: 0.05769}, {x: 0.005076027559987291, y: 0.75}, {x: 0.6253151071749422, y: 0.0015}, {x: 0.4638893728222964, y: 5e-05}, {x: 0.07530258259655319, y: 0.003}, {x: 0.04397130289065427, y: 14.548}, {x: 1.540725856386694, y: 0.305}, {x: 0.5715691948421124, y: 38.004923}, {x: 0.02928781028424299, y: 1.5546}, {x: 0.5391113175748641, y: 0.03675}, {x: 0.02876558292609629, y: 0.006}, {x: 1.4406608300907884, y: 0.005}, {x: 0.008970588235291213, y: 0.00055}, {x: 0.35716893605659833, y: 91.624}], 'label': 'SSO', 'backgroundColor': 'rgba(214, 39, 40,0.45)', 'pointRadius': 3, 'yAxisID': 'y'}] }, type: 'scatter', options: { @@ -75,7 +75,7 @@ data: { labels: ["0.00", "0.25", "0.50", "0.75", "1.00", "1.25", "1.50", "1.75", "2.00", "2.25", "2.50", "2.75+"], - datasets: [{'data': [980, 199, 98, 73, 34, 29, 13, 10, 5, 5, 3, 0], 'label': 'Days', 'backgroundColor': 'rgba(128,128,128,0.5)', 'borderColor': 'rgba(128,128,128,0.8)', 'borderWidth': 1}] + datasets: [{'data': [959, 193, 97, 73, 34, 29, 13, 10, 5, 5, 3, 0], 'label': 'Days', 'backgroundColor': 'rgba(128,128,128,0.5)', 'borderColor': 'rgba(128,128,128,0.8)', 'borderWidth': 1}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_volume_per_month.html b/docs/_includes/charts/dash_MAEEADP_dashboard_volume_per_month.html index 4cb08a32..c01de17f 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_volume_per_month.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_volume_per_month.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["2022-06-01 00:00:00", "2022-07-01 00:00:00", "2022-08-01 00:00:00", "2022-09-01 00:00:00", "2022-10-01 00:00:00", "2022-11-01 00:00:00", "2022-12-01 00:00:00", "2023-01-01 00:00:00", "2023-02-01 00:00:00", "2023-03-01 00:00:00", "2023-04-01 00:00:00", "2023-05-01 00:00:00", "2023-06-01 00:00:00", "2023-07-01 00:00:00", "2023-08-01 00:00:00", "2023-09-01 00:00:00", "2023-10-01 00:00:00", "2023-11-01 00:00:00", "2023-12-01 00:00:00", "2024-01-01 00:00:00", "2024-02-01 00:00:00", "2024-03-01 00:00:00", "2024-04-01 00:00:00", "2024-05-01 00:00:00", "2024-06-01 00:00:00", "2024-07-01 00:00:00", "2024-08-01 00:00:00", "2024-09-01 00:00:00", "2024-10-01 00:00:00", "2024-11-01 00:00:00", "2024-12-01 00:00:00", "2025-01-01 00:00:00", "2025-02-01 00:00:00", "2025-03-01 00:00:00", "2025-04-01 00:00:00", "2025-05-01 00:00:00", "2025-06-01 00:00:00", "2025-07-01 00:00:00", "2025-08-01 00:00:00", "2025-09-01 00:00:00", "2025-10-01 00:00:00", "2025-11-01 00:00:00", "2025-12-01 00:00:00", "2026-01-01 00:00:00", "2026-02-01 00:00:00", "2026-03-01 00:00:00", "2026-04-01 00:00:00", "2026-05-01 00:00:00"], - datasets: [{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.409, 3.436348, 0.001875, 1.735715, 0.0, 0.03, 0.00941, 1.751925, 0.112426, 0.633088, 0.0015, 5e-05, 15.39388, 40.515623, 0.0, 3.237131, 2.0559999999999996, 0.0, 0.0, 0.0, 0.001966, 0.0025, 0.0, 0.0, 0.0455, 0.0, 0.0, 0.0, 0.0, 0.02975, 0.0, 0.42201299999999997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.029500000000000002, 1.025, 0.3362, 0.381, 0.0, 0.003925, 0.05, 0.0, 0.02, 0.75, 0.0, 4e-05, 0.0, 0.0, 0.19338, 0.0, 0.0665, 0.0, 0.0, 0.681, 0.0, 0.0, 0.002, 0.0, 0.00146, 0.0, 0.376, 0.005, 0.001, 0.0, 0.0, 0.0, 0.0053, 0.0, 0.0, 0.0, 0.0, 0.005, 0.00055, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.813515, 0.0, 0.0, 0.0, 0.0095, 0.0, 0.0, 0.0, 0.0, 0.25, 0.2, 0.0, 0.0, 0.0, 0.8418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0001, 0.0005, 0.0, 5e-05, 0.0, 0.825, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91.624, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y'},{'data': [0.0, 115.43801, 86.804743, 228.823562, 127.657209, 101.606736, 144.556502, 213.488031, 16.326984, 125.625929, 169.506236, 99.03291899999999, 196.146284, 657.3136089999999, 454.671492, 385.326532, 77.080442, 32.020342, 420.733223, 531.844639, 33.374218, 465.470891, 200.850498, 205.159667, 137.862211, 32.548632, 144.058285, 38.537364000000004, 7.820447000000001, 22.034333, 128.027319, 38.986264, 46.148421, 151.006551, 24.811117, 385.238487, 34.830104, 173.85852, 52.303641999999996, 163.334928, 138.730634, 52.737880000000004, 38.235412000000004, 3.911468, 4.227829, 102.301629, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y'},{'data': [0.0, 14.889, 18.080000000000002, 138.0971, 63.33, 33.160000000000004, 211.6397, 302.302, 1.7000000000000002, 608.0799999999999, 159.1951, 119.67569999999999, 84.27, 412.032, 245.088, 215.554, 45.7022, 43.440000000000005, 815.5563, 1268.9624219999998, 93.968482, 888.075013, 630.2106, 119.03999999999999, 43.689, 34.5576, 71.537063, 15.428172, 4.4, 42.59, 329.08750000000003, 25.1085, 51.81999999999999, 129.872273, 50.5703, 603.457475, 38.0952, 94.8393, 25.242, 76.4396, 136.3045, 33.1398, 44.0, 2.218, 0.7150000000000001, 562.6989000000001, 0.305, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 3.91, 0.39, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 6.54005, 0.45, 0.016676, 85.38, 28.103008, 0.0, 0.0, 0.0117, 999.999999, 176.53, 0.0, 100.0004, 0.0, 0.0, 0.021042, 0.0, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y'},{'data': [0.0, 10.568458, 6.568397, 31.293090000000003, 34.771, 31.424915, 38.858, 75.5506, 0.31, 101.55400000000002, 56.135999999999996, 61.836999999999996, 17.553, 320.421, 134.207, 135.11487, 13.834, 10.969999999999999, 268.872, 290.786388, 66.543, 187.965, 43.4258, 92.108, 48.866, 4.2330000000000005, 8.293000000000001, 3.191, 4.293, 3.0740000000000003, 100.984456, 7.035001, 12.270999999999999, 40.819, 4.33, 178.161, 52.04, 34.022999999999996, 3.9549999999999996, 33.15, 83.760058, 5.389, 5.266, 0.231, 0.041, 24.434, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y'}] + labels: ["2022-06-01 00:00:00", "2022-07-01 00:00:00", "2022-08-01 00:00:00", "2022-09-01 00:00:00", "2022-10-01 00:00:00", "2022-11-01 00:00:00", "2022-12-01 00:00:00", "2023-01-01 00:00:00", "2023-02-01 00:00:00", "2023-03-01 00:00:00", "2023-04-01 00:00:00", "2023-05-01 00:00:00", "2023-06-01 00:00:00", "2023-07-01 00:00:00", "2023-08-01 00:00:00", "2023-09-01 00:00:00", "2023-10-01 00:00:00", "2023-11-01 00:00:00", "2023-12-01 00:00:00", "2024-01-01 00:00:00", "2024-02-01 00:00:00", "2024-03-01 00:00:00", "2024-04-01 00:00:00", "2024-05-01 00:00:00", "2024-06-01 00:00:00", "2024-07-01 00:00:00", "2024-08-01 00:00:00", "2024-09-01 00:00:00", "2024-10-01 00:00:00", "2024-11-01 00:00:00", "2024-12-01 00:00:00", "2025-01-01 00:00:00", "2025-02-01 00:00:00", "2025-03-01 00:00:00", "2025-04-01 00:00:00", "2025-05-01 00:00:00", "2025-06-01 00:00:00", "2025-07-01 00:00:00", "2025-08-01 00:00:00", "2025-09-01 00:00:00", "2025-10-01 00:00:00", "2025-11-01 00:00:00", "2025-12-01 00:00:00", "2026-01-01 00:00:00", "2026-02-01 00:00:00", "2026-03-01 00:00:00", "2026-04-01 00:00:00"], + datasets: [{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.409, 3.436348, 0.001875, 1.735715, 0.0, 0.03, 0.00941, 1.751925, 0.112426, 0.633088, 0.0015, 5e-05, 15.39388, 40.515623, 0.0, 3.237131, 2.0559999999999996, 0.0, 0.0, 0.0, 0.001966, 0.0025, 0.0, 0.0, 0.0455, 0.0, 0.0, 0.0, 0.0, 0.02975, 0.0, 0.42201299999999997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.029500000000000002, 1.025, 0.3362, 0.381, 0.0, 0.003925, 0.05, 0.0, 0.02, 0.75, 0.0, 4e-05, 0.0, 0.0, 0.19338, 0.0, 0.0665, 0.0, 0.0, 0.681, 0.0, 0.0, 0.002, 0.0, 0.00146, 0.0, 0.376, 0.005, 0.001, 0.0, 0.0, 0.0, 0.0053, 0.0, 0.0, 0.0, 0.0, 0.005, 0.00055, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.813515, 0.0, 0.0, 0.0, 0.0095, 0.0, 0.0, 0.0, 0.0, 0.25, 0.2, 0.0, 0.0, 0.0, 0.8418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0001, 0.0005, 0.0, 5e-05, 0.0, 0.825, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91.624, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y'},{'data': [0.0, 115.43801, 86.804743, 228.823562, 127.657209, 101.606736, 144.556502, 213.488031, 16.326984, 125.625929, 169.506236, 99.03291899999999, 196.146284, 657.3136089999999, 454.671492, 385.326532, 77.080442, 32.020342, 420.733223, 531.844639, 33.374218, 465.470891, 200.850498, 205.159667, 137.862211, 32.548632, 144.058285, 38.537364000000004, 7.820447000000001, 22.034333, 128.027319, 38.986264, 46.148421, 151.006551, 24.811117, 385.238487, 34.830104, 173.85852, 52.303641999999996, 163.334928, 138.730634, 52.737880000000004, 38.235412000000004, 3.911468, 4.227829, 102.301629, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y'},{'data': [0.0, 14.889, 18.080000000000002, 138.0971, 63.33, 33.160000000000004, 211.6397, 302.302, 1.7000000000000002, 608.0799999999999, 159.1951, 119.67569999999999, 84.27, 412.032, 245.088, 215.554, 45.7022, 43.440000000000005, 815.5563, 1268.9624219999998, 93.968482, 888.075013, 630.2106, 119.03999999999999, 43.689, 34.5576, 71.537063, 15.428172, 4.4, 42.59, 329.08750000000003, 25.1085, 51.81999999999999, 129.872273, 50.5703, 603.457475, 38.0952, 94.8393, 25.242, 76.4396, 136.3045, 33.1398, 44.0, 2.218, 0.7150000000000001, 562.6989000000001, 0.305], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 3.91, 0.39, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 6.54005, 0.45, 0.016676, 85.38, 28.103008, 0.0, 0.0, 0.0117, 999.999999, 176.53, 0.0, 100.0004, 0.0, 0.0, 0.021042, 0.0, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y'},{'data': [0.0, 10.568458, 6.568397, 31.293090000000003, 34.771, 31.424915, 38.858, 75.5506, 0.31, 101.55400000000002, 56.135999999999996, 61.836999999999996, 17.553, 320.421, 134.207, 135.11487, 13.834, 10.969999999999999, 268.872, 290.786388, 66.543, 187.965, 43.4258, 92.108, 48.866, 4.2330000000000005, 8.293000000000001, 3.191, 4.293, 3.0740000000000003, 100.984456, 7.035001, 12.270999999999999, 40.819, 4.33, 178.161, 52.04, 34.022999999999996, 3.9549999999999996, 33.15, 83.760058, 5.389, 5.266, 0.231, 0.041, 24.434, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y'}] }, type: 'bar', options: { diff --git a/docs/assets/db_semantic_context.txt b/docs/assets/db_semantic_context.txt index d0dd5d40..dc7335e2 100644 --- a/docs/assets/db_semantic_context.txt +++ b/docs/assets/db_semantic_context.txt @@ -1,5 +1,5 @@ # AMEND Database Semantic Context -Generated: 2026-04-29 +Generated: 2026-06-05 ## Global Data Notes @@ -81,6 +81,90 @@ Generated: 2026-04-29 FROM MS4_AnnualReports m JOIN MAEEADP_CSO c ON m.municipality_normalized = c.municipality WHERE m.extraction_confidence != 'low' AND c.eventType LIKE 'CSO%' GROUP BY 1 +- **Lobbying spend on environmental bills by year** (proportional allocation): + -- For each (entity, client, year): env_fraction = env_bills / total_bills; env_spend = compensation × env_fraction + -- Use (bill_id, general_court) to join MA_Lobbying_Bills → MA_Lobbying_Bills_Scored (avoids H/S collision) + WITH bill_counts AS ( + SELECT entity_name, client_name, year, COUNT(DISTINCT bill_id) AS n_all + FROM MA_Lobbying_Bills WHERE bill_id IS NOT NULL GROUP BY entity_name, client_name, year + ), env_counts AS ( + SELECT l.entity_name, l.client_name, l.year, COUNT(DISTINCT l.bill_id) AS n_env + FROM MA_Lobbying_Bills l + JOIN MA_Lobbying_Bills_Scored s ON l.bill_id = s.bill_id AND l.general_court = s.general_court + WHERE s.is_environmental = 1 + GROUP BY l.entity_name, l.client_name, l.year + ) + SELECT e.year, SUM(e.compensation * CAST(ec.n_env AS FLOAT) / bc.n_all) AS env_spend + FROM MA_Lobbying_Employers e + JOIN bill_counts bc ON e.entity_name = bc.entity_name AND e.client_name = bc.client_name AND e.year = bc.year + JOIN env_counts ec ON e.entity_name = ec.entity_name AND e.client_name = ec.client_name AND e.year = ec.year + GROUP BY e.year ORDER BY e.year + NOTE: compensation is in MA_Lobbying_Employers (column name is "compensation", NOT "total_expenditure"). + NOTE: is_environmental is in MA_Lobbying_Bills_Scored, NOT in MA_Legislature_Bills. + NOTE: Join key between MA_Lobbying_Bills and MA_Lobbying_Employers is (entity_name, client_name, year) — three columns. + NOTE: ALWAYS join MA_Lobbying_Bills to MA_Lobbying_Bills_Scored via (bill_id, general_court) not (bill_number, general_court). + +- **Top clients (employers) by total lobbying spend** (most recent year): + SELECT e.client_name, SUM(e.compensation) AS total_spend + FROM MA_Lobbying_Employers e + WHERE e.year = (SELECT MAX(year) FROM MA_Lobbying_Employers) + AND e.client_name != 'Total salaries received' + GROUP BY e.client_name + ORDER BY total_spend DESC LIMIT 15 + NOTE: use client_name (paying employer), NOT entity_name (lobbying firm). + +- **Top clients on environmental bills** (most recent year): + SELECT e.client_name, SUM(e.compensation) AS total_spend + FROM MA_Lobbying_Employers e + WHERE e.year = (SELECT MAX(year) FROM MA_Lobbying_Employers) + AND EXISTS ( + SELECT 1 FROM MA_Lobbying_Bills l + JOIN MA_Lobbying_Bills_Scored s ON l.bill_id = s.bill_id AND l.general_court = s.general_court + WHERE l.entity_name = e.entity_name AND l.client_name = e.client_name + AND l.year = e.year AND s.is_environmental = 1 + ) + GROUP BY e.client_name ORDER BY total_spend DESC LIMIT 15 + +- **Lobbying activity by topic cluster** (how many clients per cluster): + SELECT c.label, COUNT(DISTINCT l.client_name) AS n_clients, COUNT(DISTINCT l.bill_id) AS n_bills + FROM MA_Lobbying_Bills l + JOIN MA_Lobbying_Bills_Scored s ON l.bill_id = s.bill_id AND l.general_court = s.general_court + JOIN MA_Bill_Cluster_Labels c ON s.cluster_id = c.cluster_id + GROUP BY c.label ORDER BY n_clients DESC + +- **Lobbying spend vs. enforcement count by year** (dual-axis): + WITH spend AS ( + SELECT year, SUM(compensation) AS lobbying_spend FROM MA_Lobbying_Employers + WHERE client_name != 'Total salaries received' GROUP BY year + ), enforcement AS ( + SELECT strftime('%Y', EnforcementDate) AS year, COUNT(*) AS n_actions FROM MAEEADP_Enforcement GROUP BY 1 + ) + SELECT s.year, s.lobbying_spend, e.n_actions FROM spend s LEFT JOIN enforcement e ON s.year = e.year ORDER BY s.year + +- **Support vs. oppose positions on environmental bills by year**: + SELECT l.year, l.position, COUNT(DISTINCT l.client_name) AS n_clients + FROM MA_Lobbying_Bills l + JOIN MA_Lobbying_Bills_Scored s ON l.bill_id = s.bill_id AND l.general_court = s.general_court + WHERE s.is_environmental = 1 AND l.position IN ('Support', 'Oppose', 'Neutral') + GROUP BY l.year, l.position ORDER BY l.year, l.position + NOTE: position column is on MA_Lobbying_Bills, not MA_Lobbying_Employers. + +- **Bill passage rate by lobbying intensity**: + SELECT + CASE WHEN client_count >= 10 THEN 'Heavily lobbied (10+ clients)' + WHEN client_count >= 3 THEN 'Moderately lobbied (3–9 clients)' + ELSE 'Lightly lobbied (1–2 clients)' END AS lobby_tier, + AVG(CAST(b.passed AS FLOAT)) AS pass_rate, + COUNT(*) AS n_bills + FROM ( + SELECT l.bill_id, l.general_court, COUNT(DISTINCT l.client_name) AS client_count + FROM MA_Lobbying_Bills l WHERE l.bill_id IS NOT NULL GROUP BY l.bill_id, l.general_court + ) counts + JOIN MA_Lobbying_Bills_Scored s ON counts.bill_id = s.bill_id AND counts.general_court = s.general_court + JOIN MA_Legislature_Bills b ON counts.bill_id = b.bill_id AND counts.general_court = b.general_court + WHERE s.is_environmental = 1 + GROUP BY lobby_tier + - **CSO discharges to 303(d) impaired waters** (two-step join): MAEEADP_CSO JOIN CSO_303d_Mapping ON MAEEADP_CSO.waterBody = CSO_303d_Mapping.csoWaterBody JOIN EPA_303d_Impairments ON CSO_303d_Mapping.waterbody303d = EPA_303d_Impairments.waterbody @@ -1116,6 +1200,185 @@ EEA00PES00000000L8 KENNETH FIALKOSKY AL-0028553 AL PESTICIDE CREDENTIAL PESTIC --- +### MA_Bill_Cluster_Labels (25 rows) +Topic cluster labels for MA lobbying bill clusters derived from k-means on Gemini embeddings. One row per cluster_id (0–24); 25 clusters total. Key fields: cluster_id (join key to MA_Lobbying_Bills_Scored.cluster_id), label (3–5 word topic description, e.g. "Massachusetts Clean Energy Transition"), n_bills (total bills in cluster), n_env_bills (environmental bills in cluster). IMPORTANT: this table has NO bill_number or general_court column — it is a lookup table only. To get bills by topic, join MA_Lobbying_Bills_Scored on cluster_id, then join MA_Lobbying_Bills. + +```sql +CREATE TABLE "MA_Bill_Cluster_Labels" ( + "index" BIGINT, + cluster_id BIGINT, + label TEXT, + n_bills BIGINT, + n_env_bills BIGINT +) +``` + +/* 5 rows from MA_Bill_Cluster_Labels: +cluster_id label n_bills n_env_bills +0 Community and Environmental Policy 1983 49 +1 Patient Safety, Staff Autonomy, Transparency 1289 1 +2 Solid Waste Reduction and Recycling 463 178 +3 Student Education and Well-being 1572 7 +4 Infrastructure Investment and Economic Growth 1124 8 +*/ + +**Column notes:** +- `cluster_id`: Integer cluster ID (0–24). Join key to MA_Lobbying_Bills_Scored.cluster_id. +- `label`: 3–5 word topic label generated by Gemini 2.5 Flash (e.g. "Clean Energy Policy"). +- `n_bills`: Total number of bills assigned to this cluster. +- `n_env_bills`: Number of bills in this cluster flagged is_environmental=1. + +--- + +### MA_Legislature_Bills (31,511 rows) +MA Legislature OpenAPI: one row per bill. Key fields: bill_id (full prefixed ID, e.g. H1234, S5678), bill_number (integer), bill_prefix (H/S/HD/SD), general_court (session number), title (bill title), sponsor_name, status (final status text), passed (1 if signed/enacted, 0 otherwise). PREFERRED join to MA_Lobbying_Bills: JOIN ON (bill_id, general_court) — do NOT use (bill_number, general_court) as H and S bills can share the same integer. NOTE: environmental relevance scoring lives in MA_Lobbying_Bills_Scored, not here. + +```sql +CREATE TABLE "MA_Legislature_Bills" ( + "index" BIGINT, + bill_id TEXT, + bill_number BIGINT, + bill_prefix TEXT, + general_court BIGINT, + title TEXT, + sponsor_name TEXT, + status TEXT, + passed BIGINT +) +``` + +/* 5 rows from MA_Legislature_Bills: +bill_id bill_number bill_prefix general_court title sponsor_name status passed +H4999 4999 H 193 An Act promoting access to midwifery care and out-of-hospital birth options Midwifery Care and Out-of-Hospital options Signed by the Governor, Chapter 186 of the Acts of 2024 1 +H4773 4773 H 193 An Act promoting access to midwifery care and out-of-hospital birth options House Committee on Ways and Means Published as amended, see H4785 0 +S1405 1405 S 193 An Act relative to newborn screenings for congenital cytomegalovirus Joan B. Lovely No further action taken 0 +S607 607 S 193 An Act to increase access to nurse-midwifery services Brendan P. Crighton No further action taken 0 +H1069 1069 H 193 An Act to increase access to nurse-midwifery services Kay Khan Senate concurred 0 +*/ + +**Column notes:** +- `bill_id`: Full chamber-prefixed bill ID (e.g. H1234, S5678). PREFERRED join key — use (bill_id, general_court) to join to MA_Lobbying_Bills and MA_Lobbying_Bills_Scored. +- `bill_number`: Integer bill number. WARNING: H and S bills can share the same integer — always use bill_id for joins, not bill_number alone. +- `bill_prefix`: Chamber prefix: H, S, HD, or SD. +- `general_court`: Session number. 185=2009-10, 186=2011-12, ..., 192=2021-22, 193=2023-24, 194=2025-26. +- `passed`: 1 if the bill was signed into law or enacted; 0 if it died or is still pending. + +--- + +### MA_Lobbying_Bills (225,178 rows) +MA SoS lobbying disclosures: fact table linking employers to bills they lobbied. One row per (entity_name, client_name, general_court, bill_number, year). CRITICAL DISTINCTION: entity_name = lobbying firm; client_name = paying employer. Key fields: entity_name, client_name, year, general_court, bill_number, bill_id, bill_prefix, bill_title, position ("Support", "Oppose", "Neutral", or empty), chamber, amount (per-bill spend if reported). bill_id is a derived column combining bill_prefix + bill_number (e.g. H1234, S5678). bill_prefix is derived from chamber: "House Bill"/"HB" → "H"; "Senate Bill"/"SB" → "S"; "House Docket"/"HD" → "HD"; "Senate Docket"/"SD" → "SD". PREFERRED join to MA_Lobbying_Bills_Scored: use (bill_id, general_court) — do NOT use (bill_number, general_court) alone as H and S bills can share the same integer bill_number. Join to MA_Legislature_Bills on (bill_id, general_court) for passed status. Join to MA_Lobbying_Employers on (entity_name, client_name, year) for total compensation. IMPORTANT: this table has NO single spending column — compensation lives in MA_Lobbying_Employers. + +```sql +CREATE TABLE "MA_Lobbying_Bills" ( + "index" BIGINT, + entity_name TEXT, + client_name TEXT, + year BIGINT, + general_court BIGINT, + chamber TEXT, + bill_number BIGINT, + bill_title TEXT, + position TEXT, + amount FLOAT, + entity_name_norm TEXT, + client_name_norm TEXT, + bill_prefix TEXT, + bill_id TEXT +) +``` + +/* 5 rows from MA_Lobbying_Bills: +entity_name client_name year general_court chamber bill_number bill_title position amount entity_name_norm client_name_norm bill_prefix bill_id +Robert Alan Baker Smaller Business Association of New England 2014 188 House Bill 4165 An Act Promoting Economic Growth Across the Commonwealth. Sought funding for manufacturing grant and layoff aversion program. met with key legislators from Economic Development committee and Ways and Means. Support 170000.0 ROBERT ALAN BAKER SMALLER BUSINESS ASSOCIATION OF NEW ENGLAND H H4165 +Law Office of Attorney James F McGrail Outfront Media, LLC 2018 190 Executive NULL Matters in connection with Outfront Media Group LLC's participation in the request for proposals for advertising rights on the Massachusetts Bay Transportation Authority. Support 90000.0 ATTORNEY JAMES F MCGRAIL OUTFRONT MEDIA NULL NULL +Northwind Strategies New England Independent Transmission Company, LLC 2014 188 Executive NULL Advised regarding potential energy legislation and central procurement. Represented client and met with the Executive Office of Environment & Energy. Support 90000.0 NORTHWIND STRATEGIES NEW ENGLAND INDEPENDENT TRANSMISSION COMPANY NULL NULL +Northwind Strategies Boston Beer 2014 188 House Bill 267 Represented client before members of the Joint Committee on Consumer Protection and Professional Licensure and met with Representatives Peisch, Mariano, Moran, and Haddad. Support 67500.0 NORTHWIND STRATEGIES BOSTON BEER H H267 +Northwind Strategies GTECH Corporation 2014 188 Executive NULL Represented client and advised relative to current and future activities with the Massachusetts Lottery and the State Treasury. Support 66000.0 NORTHWIND STRATEGIES GTECH NULL NULL +*/ + +**Column notes:** +- `entity_name`: Lobbying firm. IMPORTANT: use client_name (not entity_name) to identify the paying employer. +- `client_name`: Paying employer. Join key to MA_Lobbying_Employers.client_name. Use this for all employer-level analysis. +- `bill_number`: Integer bill number (e.g. 1234). WARNING: H and S bills can share the same integer — always combine with bill_id (or bill_prefix) to distinguish them. +- `bill_id`: Derived chamber-prefixed bill ID (e.g. H1234, S5678). PREFERRED join key to MA_Lobbying_Bills_Scored and MA_Legislature_Bills: JOIN ON (bill_id, general_court). NULL for rows where chamber is not H/S/HD/SD. +- `bill_prefix`: Derived bill chamber prefix: "H", "S", "HD", or "SD". NULL for non-standard chamber values (Executive, FY, etc.). +- `general_court`: MA legislative session (e.g. 193 = 2023–2024). Joins to MA_Legislature_Bills.general_court. +- `chamber`: Raw chamber string from SoS portal: "House Bill", "Senate Bill", "House Docket", "Senate Docket", "HB", "SB", "Executive", "FY", etc. +- `position`: Lobbying position: "Support", "Oppose", "Neutral", or empty string. Use for coalition/opposition analysis. +- `year`: Filing year. Join to MA_Lobbying_Employers on (entity_name, client_name, year) for compensation. +- `amount`: Per-bill spend in dollars (often NULL — use MA_Lobbying_Employers.compensation for spending analysis). + +--- + +### MA_Lobbying_Bills_Scored (31,702 rows) +Environmental relevance scores for MA lobbying bills, derived from Gemini embeddings. One row per unique (bill_number, general_court). Key fields: bill_number, general_court, bill_title, bill_id (e.g. H1234), env_relevance_score (float; differential cosine similarity to env vs non-env example bills; higher = more environmentally relevant), is_environmental (1 if env_relevance_score >= 0.05), cluster_id (integer topic cluster 0–24; -1 = unassigned; 25 clusters total). Join to MA_Lobbying_Bills on (bill_number, general_court) to find which clients lobbied env bills. Join to MA_Bill_Cluster_Labels on cluster_id for human-readable cluster topic labels. IMPORTANT: is_environmental is per-bill; no cluster is purely environmental. + +```sql +CREATE TABLE "MA_Lobbying_Bills_Scored" ( + "index" BIGINT, + bill_number BIGINT, + general_court BIGINT, + bill_title TEXT, + bill_id TEXT, + env_relevance_score FLOAT, + is_environmental BIGINT, + cluster_id BIGINT +) +``` + +/* 5 rows from MA_Lobbying_Bills_Scored: +bill_number general_court bill_title bill_id env_relevance_score is_environmental cluster_id +3678 194 An Act relative to chemical recycling HD3678 0.1475381851196289 1 -1 +4563 193 An Act relative to landfills and areas of critical environmental concern H4563 0.1332122683525085 1 0 +2945 190 An Act relative to landfills and areas of critical environmental concern H2945 0.1287276148796081 1 21 +894 191 An Act relative to landfills and areas of critical environmental concern H894 0.1287276148796081 1 10 +930 192 An Act relative to landfills and areas of critical environmental concern H930 0.1287275552749633 1 -1 +*/ + +**Column notes:** +- `bill_number`: MA bill number. Join key to MA_Lobbying_Bills and MA_Legislature_Bills. +- `general_court`: MA legislative session number. Join key to MA_Lobbying_Bills. +- `bill_id`: Chamber-prefixed bill ID (e.g. H1234, S567). Used for Legislature API lookups. +- `env_relevance_score`: Differential cosine similarity: max_sim(env_examples) - max_sim(non_env_examples). Positive = more env-like than non-env. Threshold for is_environmental is 0.05. +- `is_environmental`: 1 if env_relevance_score >= 0.05. Use this to filter to environmentally relevant bills. +- `cluster_id`: Topic cluster integer (0–24; 25 clusters). -1 means unassigned. Join to MA_Bill_Cluster_Labels for label. + +--- + +### MA_Lobbying_Employers (12,244 rows) +MA Secretary of State lobbying disclosures: one row per (lobbying firm, client/employer, year). CRITICAL DISTINCTION: entity_name = the lobbying firm (e.g. "Smith & Jones Lobbying LLC"); client_name = the actual employer paying for lobbying (e.g. "National Grid USA"). Always use client_name for employer-level analysis. Key fields: entity_name, client_name, year, compensation (total dollars paid by client to firm that year), reg_type (registration type). Data covers 2009–present; older years have sparse compensation data. Join to MA_Lobbying_Bills on (entity_name, client_name, year) to see which bills a client lobbied. IMPORTANT: this table has NO spending column called total_expenditure — the column is compensation. + +```sql +CREATE TABLE "MA_Lobbying_Employers" ( + "index" BIGINT, + entity_name TEXT, + client_name TEXT, + year BIGINT, + reg_type TEXT, + compensation FLOAT, + entity_name_norm TEXT, + client_name_norm TEXT +) +``` + +/* 5 rows from MA_Lobbying_Employers: +entity_name client_name year reg_type compensation entity_name_norm client_name_norm +21c, LLC EDUCATION TRUST, INC. (THE) 2024 Lobbyist Entity 7500.0 21C EDUCATION TRUST +21c, LLC Amplify Education, Inc. 2024 Lobbyist Entity 22500.0 21C AMPLIFY EDUCATION +21c, LLC The Massachusetts Alliance for Early College, Inc. 2024 Lobbyist Entity 15000.0 21C MASSACHUSETTS ALLIANCE FOR EARLY COLLEGE +21c, LLC Benjamin Franklin Cummings Institute of Technology 2024 Lobbyist Entity 12500.0 21C BENJAMIN FRANKLIN CUMMINGS INSTITUTE OF TECHNOLOGY +21c, LLC Total salaries received 2024 Lobbyist Entity 57500.0 21C TOTAL SALARIES RECEIVED +*/ + +**Column notes:** +- `entity_name`: Lobbying firm name (e.g. "Smith Advocacy LLC"). NOT the employer — use client_name for employer analysis. +- `client_name`: Paying employer/client (e.g. "National Grid USA"). Use this for employer-level analysis, NOT entity_name. +- `year`: Calendar year of the filing. Compensation data is sparse before 2019; 2019–present is complete. +- `compensation`: Total dollars paid by client_name to entity_name for lobbying that year. IMPORTANT: the column is "compensation", NOT "total_expenditure". +- `reg_type`: Registration type (e.g. "Lobbying Entity"). Use to filter out non-employer rows if needed. + +--- + ### MA_precipitation_daily (9,862 rows) Daily precipitation averages across Massachusetts weather stations (NOAA ACIS). Key fields: date (YYYY-MM-DD), precip_in_avg (inches), n_stations. diff --git a/docs/data/EEADP_CSO_sample.csv b/docs/data/EEADP_CSO_sample.csv index f0e27943..c7c78009 100644 --- a/docs/data/EEADP_CSO_sample.csv +++ b/docs/data/EEADP_CSO_sample.csv @@ -1,11 +1,11 @@ incidentId,incidentNumber,incidentDate,incidentTime,amPm,reporterClass,eventType,permiteeClass,permiteeName,permiteeId,outfallId,municipality,reportingType,location,latitude,longitude,waterBody,waterBodyDescription,volumnOfEvent,rainfallData,hours,minutes,month,additionalInformation,submittedDate,parentIncidentId,Year -b56b2ecb-87cf-4a1f-91f3-dbddf7c6772f,23005329,2023-07-16 00:00:00,20:35,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW007,NEW BEDFORD,,CAPITAL AND ROD. FRENCH BLVD,,,CLARK COVE,,134430.0,1.68,0.0,25.0,,23004420,2023-08-15 11:25:14.900,,2023.0 -83f2707f-88c5-4202-a24b-862e6a1296df,23005154,2023-07-03 00:00:00,02:50,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW005,NEW BEDFORD,,DUDLEY & RFB,,,CLARK COVE,,27890.0,0.43,0.0,5.0,,23003914,2023-08-14 10:18:25.263,,2023.0 -5c50ba01-c4e5-41a0-9acf-b2a42319dbe9,24011478,2024-09-26 07:18:18,23:25,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW031,NEW BEDFORD,,CONWAY ST AT BUZZARDS BAY,,,INNER NEW BEDFORD HARBOR,,1603075.0,1.4,3.0,35.0,,,2024-10-15 16:00:22.570,,2024.0 -c272a918-9a14-42fc-aaa9-002e22532298,26015797,2026-03-23 00:00:00,04:40,,Public Notification Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW027,NEW BEDFORD,Initial-Ceased,MILL RD AT ACUSHNET RIVER,,,ACUSHNET RIVER,,,,,,,,2026-03-23 09:00:45.960,,2026.0 -80635ba2-2989-484a-b7a5-fa3ef0e63c50,25013190,2025-03-06 13:48:08,00:00,,Verified Data Report,CSO – UnTreated,CSO,CITY OF CHICOPEE,MA0101508,CHI37,CHICOPEE,,EAST MAIN ST #227,,,CHICOPEE R.,,6931.0,1.38,3.0,15.0,,,2025-05-19 09:44:29.727,,2025.0 -370abcf1-9c0d-4dcd-9c5d-a994d3609253,23002322,2023-01-26 15:54:20,01:20,,Public Notification Report,CSO – UnTreated,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOW008,LOWELL,Initial-Ceased,WEST STREET,,,MERRIMACK RIVER,,,,,,,,2023-01-26 16:04:56.043,,2023.0 -053deb9e-3335-4f5f-940b-51c29fefe27f,23005278,2023-07-10 00:00:00,10:57,,Verified Data Report,CSO – UnTreated,CSO,CITY OF FITCHBURG,MA0100986,FIT064,FITCHBURG,,CHAMBER BEHIND 672 WATER ST.,,,NASHUA RIVER,,586000.0,2.11,7.0,38.0,,,2023-08-15 08:52:36.693,,2023.0 -44353f66-06bb-4a19-a4a8-4ab954e2f890,22000036,2022-07-13 21:01:32,5:30,PM,Public Notification Report,SSO – System Surcharging Under High Flow Conditions,Non-CSO,"WATERTOWN, CITY OF",,,WATERTOWN,Initial-Ceased,Other,,,Other,,,,,,,,2022-07-13 21:20:54.737,,2022.0 -df8043de-9e3f-4798-ac7f-8398190d88cc,25013024,2025-04-08 11:20:12,03:35,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW003,NEW BEDFORD,,COVE RD & PADNARAM AVE,,,CLARK COVE,,131320.0,1.37,1.0,25.0,,,2025-05-07 15:52:23.247,,2025.0 -62ffa854-c5bd-4831-821b-530ef487d74b,23007105,2023-12-11 14:35:59,00:00,,Public Notification Report,CSO – UnTreated,CSO,CITY OF CHICOPEE,MA0101508,CHI27,CHICOPEE,Initial-Ceased,"PARKING LOT, TOPORS GARAGE & FRONT ST",,,CHICOPEE R.,,,,,,,,2023-12-13 14:40:03.990,,2023.0 +4378502f-8de6-40e6-8718-203f46cbe2c9,23002749-1,2023-03-28 00:00:00,00:00,,Verified Data Report,CSO – UnTreated,CSO,CITY OF CHICOPEE,MA0101508,CHI27,CHICOPEE,,"PARKING LOT, TOPORS GARAGE & FRONT ST",,,CHICOPEE R.,,2097.0,0.19,0.0,15.0,,,2023-10-23 09:56:41.460,,2023.0 +99309d8f-146f-4e00-b803-97bdb165b964,25012609,2025-04-05 05:22:24,19:35,,Public Notification Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW023,NEW BEDFORD,Initial-Ceased,COFFIN AVE,,,ACUSHNET RIVER,,,,,,,,2025-04-06 01:26:17.747,,2025.0 +77c9ef1b-7ac8-4583-82b9-1cafbd09e47b,22000847,2022-09-22 00:00:00,8:16,AM,Verified Data Report,CSO – Treated,CSO,CITY OF HOLYOKE,MA0101630,HOL09,HOLYOKE,,BERKSHIRE ST.,,,CONNECTICUT R.,,3086000.0,0.7,2.0,0.0,,,2022-10-06 09:26:55.740,,2022.0 +94e6fcae-4b25-4628-ba36-dfd8fb5e419b,22001342,2022-10-14 00:00:00,1:10,AM,Verified Data Report,CSO – UnTreated,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPR014,SPRINGFIELD,,ELM ST.,,,CONNECTICUT R.,,31000.0,0.93,1.0,25.0,,,2022-11-14 11:18:56.200,,2022.0 +b4dd4e25-4445-44ac-9b5d-5dc26bfd465b,26015614,2025-07-27 00:00:00,00:00,,Verified Data Report,CSO – UnTreated,CSO,CITY OF CHICOPEE,MA0101508,CHI03,CHICOPEE,,POWER LINE ROW S OF JAMES ST,,,CONNECTICUT R.,,820320.0,0.45,2.0,15.0,,,2026-02-03 09:19:27.930,,2025.0 +bb429ddc-3657-4b31-8165-b02ceebc3f45,24010810,2024-08-07 06:31:26,00:45,,Public Notification Report,CSO – UnTreated,CSO,CITY OF FITCHBURG,MA0100986,FIT032,FITCHBURG,Initial-Ceased,843 MAIN ST. @ POST OFFICE,,,NASHUA RIVER,,,,,,,,2024-08-08 06:33:13.347,,2024.0 +8f7b0550-05e5-42e4-b5c7-f89436db2c41,22001350,2022-10-05 00:00:00,5:05,AM,Verified Data Report,CSO – UnTreated,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPR049,SPRINGFIELD,,SPRINGFIELD ST.,,,CONNECTICUT R.,,136000.0,0.94,3.0,15.0,,,2022-11-14 11:25:17.750,,2022.0 +a7190832-13a1-4ea2-91ca-edf207c72088,23006627,2023-09-18 00:00:00,23:10,,Verified Data Report,CSO – UnTreated,CSO,CITY OF HOLYOKE,MA0101630,HOL020,HOLYOKE,,CLEVELAND ST.,,,CONNECTICUT R.,,203016.0,1.14,2.0,35.0,,,2023-10-15 13:21:54.950,,2023.0 +dad8b68b-04e7-404d-b051-d555a709372e,24008036,2024-01-10 00:00:00,00:45,,Verified Data Report,CSO – UnTreated,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOW030-1,LOWELL,,BARASFORD AVE,,,MERRIMACK RIVER,,14510.0,1.68,7.0,24.0,,,2024-02-13 10:39:09.743,,2024.0 +a0cea94f-04d1-4289-aa08-86159e33f935,23005349,2023-07-21 00:00:00,20:40,,Verified Data Report,CSO – UnTreated,CSO,CITY OF CHELSEA,MA0101877,CHE003,CHELSEA,,END OF WINNISIMMIT ST,,,MYSTIC RIVER,,28000.0,2.07,0.0,10.0,,We were not able to calculate volume. The reported volume is the amount from the last activation in 2019 which was also for 10 minutes. ,2023-08-15 13:17:36.393,,2023.0 diff --git a/docs/data/EEADP_drinkingWater_annual.csv b/docs/data/EEADP_drinkingWater_annual.csv index a83dc2a8..1f85b951 100644 --- a/docs/data/EEADP_drinkingWater_annual.csv +++ b/docs/data/EEADP_drinkingWater_annual.csv @@ -166952,7 +166952,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2025,ZOAR OUTDOOR,NITRAT,F,3 2025,ZOAR OUTDOOR,SECCON,F,11 2025,ZOAR OUTDOOR,SODIUM,F,3 -2026,10 THRU 16 HASTINGS STREET,NITRAT,F,2 +2026,10 THRU 16 HASTINGS STREET,NITRAT,F,1 2026,10 THRU 16 HASTINGS STREET,PFAS,F,57 2026,10.0 GYMNASTICS,SECCON,F,1 2026,122 MAIN STREET,NITRAT,F,1 @@ -166986,7 +166986,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,159 SWANSON RD SETRA SYSTEMS INC,SODIUM,F,1 2026,159 SWANSON RD SETRA SYSTEMS INC,SODIUM,R,2 2026,159 SWANSON RD SETRA SYSTEMS INC,VOC,F,56 -2026,2 ALLEN ST PROFESSIONAL BLDG,SECCON,F,2 2026,28 HASTINGS ST CORP,PFAS,F,57 2026,28 HASTINGS ST CORP,PFAS,R,57 2026,28 HASTINGS ST CORP,SECCON,F,4 @@ -167010,8 +167009,8 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,ABINGTON/ROCKLAND JOINT WTR. WORKS,HAA5,F,24 2026,ABINGTON/ROCKLAND JOINT WTR. WORKS,INORG,F,26 2026,ABINGTON/ROCKLAND JOINT WTR. WORKS,NITRIT,F,2 -2026,ABINGTON/ROCKLAND JOINT WTR. WORKS,PFAS,F,114 -2026,ABINGTON/ROCKLAND JOINT WTR. WORKS,PFAS,R,114 +2026,ABINGTON/ROCKLAND JOINT WTR. WORKS,PFAS,F,95 +2026,ABINGTON/ROCKLAND JOINT WTR. WORKS,PFAS,R,95 2026,ABINGTON/ROCKLAND JOINT WTR. WORKS,THM,F,20 2026,ACTON WATER SUPPLY DISTRICT,HAA5,F,24 2026,ACTON WATER SUPPLY DISTRICT,PFAS,F,209 @@ -167035,7 +167034,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,ADMINISTRATION BLDG TOWN HALL ANNEX,SECCON,F,3 2026,AGAWAM WATER DEPARTMENT,HAA5,F,24 2026,AGAWAM WATER DEPARTMENT,THM,F,20 -2026,ALPHABET SOUP CHILD CARE CENTER,SECCON,F,2 2026,AMARI BAR AND RISTORANTE,SECCON,F,4 2026,AMERICAN INSTITUTE FOR ECONOMIC RESEARCH,SECCON,F,2 2026,AMERICAN INSTITUTE FOR ECONOMIC RESEARCH,SECCON,R,2 @@ -167170,9 +167168,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,AZUREGREEN,SECCON,F,4 2026,AZUREGREEN,SECCON,R,4 2026,BACHELOR KNOLLS,SECCON,F,4 -2026,BAGELS N MORE,NITRAT,F,1 -2026,BAGELS N MORE,NITRIT,F,1 -2026,BAGELS N MORE,SODIUM,F,1 2026,BAKERS COUNTRY STORE,NITRAT,F,1 2026,BALDERELLI INC,NITRAT,F,3 2026,BALDERELLI INC,SECCON,F,2 @@ -167180,9 +167175,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,BALDERELLI INC,VOC,F,60 2026,BARNSTABLE FIRE DISTRICT,PFAS,F,95 2026,BARRE MHP/WATERWHEEL VILLAGE,PFAS,F,19 -2026,BARRE WATER DEPARTMENT,NITRAT,F,2 -2026,BARRE WATER DEPARTMENT,SECCON,F,4 -2026,BARRE WATER DEPARTMENT,VOC,F,110 2026,BARTOWS MOBILE HOME PARK,NITRAT,F,1 2026,BARTOWS MOBILE HOME PARK,VOC,F,55 2026,BAYSIDE RESTAURANT,NITRAT,F,1 @@ -167219,7 +167211,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,BELLINGHAM DPW WATER SEWER DIVISION,TOC,R,2 2026,BENCHMARK CONDOMINIUMS,RADIO,F,2 2026,BENFIELD FARMS,PFAS,F,19 -2026,BERKLEY COMMUNITY SCHOOL,INORG,F,13 +2026,BERKLEY COMMUNITY SCHOOL,INORG,F,12 2026,BERKLEY COMMUNITY SCHOOL,PFAS,F,19 2026,BERKLEY MIDDLE SCHOOL/TOWN OFFICES,SECCON,F,2 2026,BERKSHIRE COUNTRY DAY SCHOOL,VOC,F,56 @@ -167294,12 +167286,10 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,BOLTON OFFICE PARK ALTA NASHOBA VALLEY,SECCON,R,45 2026,BOLTON OFFICE PARK ALTA NASHOBA VALLEY,VOC,F,118 2026,BOLTON SPRING FARM,INORG,F,1 -2026,BONDSVILLE FIRE AND WATER DISTRICT,SECCON,F,4 -2026,BONDSVILLE FIRE AND WATER DISTRICT,SECCON,R,4 2026,BOURNE WATER DISTRICT,INORG,F,1 2026,BOURNE WATER DISTRICT,NITRAT,F,6 2026,BOURNE WATER DISTRICT,NITRIT,F,6 -2026,BOURNE WATER DISTRICT,PCE,F,28 +2026,BOURNE WATER DISTRICT,PCE,F,24 2026,BOURNE WATER DISTRICT,PFAS,F,228 2026,BOXBOROUGH EXECUTIVE OFFICE CENTER,NITRAT,F,1 2026,BOXBOROUGH EXECUTIVE OFFICE CENTER,PFAS,F,57 @@ -167398,13 +167388,10 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,BUTTERNUT FARM GOLF CLUB,SECCON,F,2 2026,BUZZARDS BAY WATER DISTRICT,PFAS,F,19 2026,BUZZARDS BAY WATER DISTRICT,SODIUM,F,3 -2026,BYFIELD WATER DISTRICT,INORG,F,2 -2026,BYFIELD WATER DISTRICT,NITRAT,F,1 -2026,BYFIELD WATER DISTRICT,NITRIT,F,1 +2026,BYFIELD WATER DISTRICT,INORG,F,1 2026,BYFIELD WATER DISTRICT,PFAS,F,19 2026,BYFIELD WATER DISTRICT,RADIO,F,4 -2026,BYFIELD WATER DISTRICT,SECCON,F,4 -2026,CALVARY BIBLE CHURCH,NITRAT,F,1 +2026,BYFIELD WATER DISTRICT,SECCON,F,2 2026,CAMBRIDGE WATER DEPARTMENT,HAA5,F,48 2026,CAMBRIDGE WATER DEPARTMENT,INORG,F,13 2026,CAMBRIDGE WATER DEPARTMENT,NITRAT,F,28 @@ -167413,12 +167400,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CAMBRIDGE WATER DEPARTMENT,PFAS,R,38 2026,CAMBRIDGE WATER DEPARTMENT,SECCON,F,17 2026,CAMBRIDGE WATER DEPARTMENT,SOC,F,46 -2026,CAMBRIDGE WATER DEPARTMENT,THM,F,280 +2026,CAMBRIDGE WATER DEPARTMENT,THM,F,240 2026,CAMBRIDGE WATER DEPARTMENT,VOC,F,58 2026,CAMP BOURNEDALE,SECCON,F,1 2026,CAMP EVERGREEN,NITRAT,F,1 2026,CAMP PUTNAM,SECCON,F,2 -2026,CAMP WING DUXBURY STOCKADE,VOC,F,56 2026,CAMPANELLI DEVELOPMENT,PFAS,F,57 2026,CAMPANELLI DEVELOPMENT,PFAS,R,19 2026,CAMPANELLI DEVELOPMENT,SECCON,F,2 @@ -167465,8 +167451,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CARVER HIGH SCHOOL AND MIDDLE SCHOOL,SECCON,F,2 2026,CARVER MUNICIPAL BUILDINGS,INORG,F,4 2026,CARVER MUNICIPAL BUILDINGS,SECCON,F,2 -2026,CATAMOUNT SPORTSMENS CLUB,NITRAT,F,1 -2026,CATAMOUNT SPORTSMENS CLUB,SECCON,F,2 2026,CCNS MARCONI AREA,INORG,F,14 2026,CCNS MARCONI AREA,SECCON,F,1 2026,CCNS MARCONI AREA,SOC,F,45 @@ -167482,11 +167466,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CENTERVILLE OSTERVILLE MARSTONS MILLS WD,SOC,F,45 2026,CENTERVILLE OSTERVILLE MARSTONS MILLS WD,SODIUM,F,1 2026,CENTERVILLE OSTERVILLE MARSTONS MILLS WD,VOC,F,56 -2026,CENTRE VILLAGE APARTMENTS,NITRAT,F,1 2026,CENTRE VILLAGE APARTMENTS,PFAS,F,57 -2026,CENTRE VILLAGE APARTMENTS,SECCON,F,26 -2026,CENTRE VILLAGE APARTMENTS,SECCON,R,4 -2026,CENTRE VILLAGE APARTMENTS,VOC,F,55 +2026,CENTRE VILLAGE APARTMENTS,SECCON,F,8 +2026,CENTRE VILLAGE APARTMENTS,SECCON,R,2 2026,CENTURY MILL ESTATES,SECCON,F,2 2026,CENTURY MILL ESTATES,SECCON,R,4 2026,CHARLEMONT 4FAMILY STORE,NITRAT,F,1 @@ -167494,11 +167476,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CHARLTON MANOR REST HOME,INORG,F,1 2026,CHARLTON MANOR REST HOME,PFAS,F,19 2026,CHARLTON MANOR REST HOME,RADIO,F,1 -2026,CHASE CORPORATION,INORG,F,2 -2026,CHASE CORPORATION,INORG,R,2 +2026,CHASE CORPORATION,INORG,F,1 +2026,CHASE CORPORATION,INORG,R,1 2026,CHASE CORPORATION,PFAS,F,19 -2026,CHASE CORPORATION,SECCON,F,4 -2026,CHASE CORPORATION,SECCON,R,4 +2026,CHASE CORPORATION,SECCON,F,2 +2026,CHASE CORPORATION,SECCON,R,2 2026,CHASE CORPORATION,VOC,F,60 2026,CHATHAM WATER DEPARTMENT,INORG,F,3 2026,CHATHAM WATER DEPARTMENT,NITRAT,F,1 @@ -167531,9 +167513,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CHESTER WATER DEPT,SECCON,F,2 2026,CHESTER WATER DEPT,SECCON,R,4 2026,CHESTER WATER DEPT,THM,F,10 -2026,CHESTERFIELD CONGREGATIONAL CHURCH,NITRAT,F,1 -2026,CHESTERFIELD CONGREGATIONAL CHURCH,NITRIT,F,1 -2026,CHESTERFIELD CONGREGATIONAL CHURCH,SODIUM,F,1 2026,CHESTERFIELD GENERAL STORE,NITRAT,F,1 2026,CHESTERFIELD GENERAL STORE,NITRIT,F,1 2026,CHESTERFIELD GENERAL STORE,SECCON,F,4 @@ -167581,7 +167560,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CODMAN HILL CONDOMINIUM,VOC,R,56 2026,COHASSET WATER DEPT,HAA5,F,30 2026,COHASSET WATER DEPT,PFAS,F,38 -2026,COHASSET WATER DEPT,THM,F,70 +2026,COHASSET WATER DEPT,THM,F,45 2026,COHASSET WATER DEPT,VOC,F,62 2026,COLD RIVER INC,NITRAT,F,1 2026,COLD SPRING COUNTRY CLUB,SECCON,F,2 @@ -167617,8 +167596,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CONWAY INN,NITRAT,F,1 2026,COOL SANDY BEACH COMMUNITY WATER SYSTEM,INORG,F,1 2026,COOL SANDY BEACH COMMUNITY WATER SYSTEM,INORG,R,2 -2026,COOL SANDY BEACH COMMUNITY WATER SYSTEM,NITRAT,F,1 -2026,COOL SANDY BEACH COMMUNITY WATER SYSTEM,SECCON,F,2 2026,CORRIGAN MENTAL HEALTH CENTER,HAA5,F,6 2026,CORRIGAN MENTAL HEALTH CENTER,THM,F,5 2026,COSGROVE REALTY,NITRAT,F,1 @@ -167653,7 +167630,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CURTIS HILL CONDOMINIUM,PFAS,F,19 2026,CURTIS HILL CONDOMINIUM,PFAS,R,19 2026,CURTIS HILL CONDOMINIUM,SECCON,F,4 -2026,CUTCHINS PROGRAM FOR CHILDREN FAMILIES,PFAS,F,19 2026,CUTCHINS PROGRAM FOR CHILDREN FAMILIES,VOC,F,56 2026,DADS RESTAURANT,SECCON,F,1 2026,DALTON FIRE DISTRICT,HAA5,F,12 @@ -167732,7 +167708,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,DRACUT WATER SUPPLY DISTRICT,THM,F,40 2026,DRAGON HILL CONDOMINIUMS,SECCON,F,2 2026,DRAGON HILL CONDOMINIUMS,VOC,F,64 -2026,DREAM AWAY LODGE,NITRAT,F,1 2026,DUDLEY WATER DEPARTMENT,INORG,F,1 2026,DUDLEY WATER DEPARTMENT,INORG,R,5 2026,DUDLEY WATER DEPARTMENT,NITRAT,F,1 @@ -167748,18 +167723,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,DUNKIN DONUTS LANCASTER,SECCON,F,1 2026,DUNKIN DONUTS MENDON,SECCON,F,1 2026,DUXBURY WATER DEPARTMENT,INORG,F,79 -2026,DUXBURY WATER DEPARTMENT,NITRAT,F,7 -2026,DUXBURY WATER DEPARTMENT,NITRIT,F,7 +2026,DUXBURY WATER DEPARTMENT,NITRAT,F,6 +2026,DUXBURY WATER DEPARTMENT,NITRIT,F,6 2026,DUXBURY WATER DEPARTMENT,PFAS,F,133 2026,DUXBURY WATER DEPARTMENT,VOC,F,336 -2026,EAGLE HILL SCHOOL,INORG,F,2 -2026,EAGLE HILL SCHOOL,SECCON,F,2 -2026,EAGLE HILL SCHOOL,SECCON,R,4 -2026,EAGLEBROOK SCHOOL,INORG,F,24 -2026,EAGLEBROOK SCHOOL,NITRAT,F,2 -2026,EAGLEBROOK SCHOOL,NITRIT,F,2 -2026,EAGLEBROOK SCHOOL,SECCON,F,4 -2026,EAGLEBROOK SCHOOL,SODIUM,F,2 +2026,EAGLE HILL SCHOOL,INORG,F,1 2026,EAST BRIDGEWATER WATER DEPT,HAA5,F,24 2026,EAST BRIDGEWATER WATER DEPT,NITRAT,F,2 2026,EAST BRIDGEWATER WATER DEPT,NITRIT,F,2 @@ -167775,8 +167743,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,EAST LONGMEADOW DPW WATER DEPT,HAA5,F,24 2026,EAST LONGMEADOW DPW WATER DEPT,THM,F,20 2026,EAST NORTHFIELD WATER CO,HAA5,F,6 -2026,EAST NORTHFIELD WATER CO,SECCON,F,2 -2026,EAST NORTHFIELD WATER CO,SECCON,R,2 2026,EAST NORTHFIELD WATER CO,THM,F,5 2026,EASTHAMPTON WATER DEPT,VOC,F,56 2026,EASTHAMPTON WATER DEPT,VOC,R,112 @@ -167788,12 +167754,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,EASTON WATER DIV,SECCON,F,1 2026,EASTON WATER DIV,SODIUM,F,5 2026,EASTON WATER DIV,THM,F,40 -2026,ECHO HILL ORCHARDS AND WINERY,NITRAT,F,1 -2026,ECHO HILL ORCHARDS AND WINERY,NITRIT,F,1 -2026,ECHO HILL ORCHARDS AND WINERY,SECCON,F,2 -2026,ECHO HILL ORCHARDS AND WINERY,SECCON,R,2 -2026,ECHO HILL ORCHARDS AND WINERY,SODIUM,F,1 -2026,ECHO HILL ORCHARDS AND WINERY,VOC,F,64 2026,EDGARTOWN WATER DEPARTMENT,INORG,F,4 2026,EDGARTOWN WATER DEPARTMENT,PCE,F,14 2026,EDGARTOWN WATER DEPARTMENT,SODIUM,F,4 @@ -167805,7 +167765,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,EGREMONT WATER DEPT,INORG,F,12 2026,EGREMONT WATER DEPT,NITRAT,F,1 2026,EGREMONT WATER DEPT,NITRIT,F,1 -2026,EGREMONT WATER DEPT,SECCON,F,17 +2026,EGREMONT WATER DEPT,SECCON,F,14 2026,EGREMONT WATER DEPT,SECCON,R,2 2026,EGREMONT WATER DEPT,SODIUM,F,1 2026,EGREMONT WATER DEPT,THM,F,5 @@ -167861,13 +167821,12 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,FALL RIVER WATER DEPARTMENT,THM,F,40 2026,FALL RIVER WATER DEPARTMENT,VOC,F,55 2026,FALMOUTH WATER DEPT,HAA5,F,48 -2026,FALMOUTH WATER DEPT,NITRAT,F,4 -2026,FALMOUTH WATER DEPT,NITRIT,F,2 +2026,FALMOUTH WATER DEPT,NITRAT,F,3 +2026,FALMOUTH WATER DEPT,NITRIT,F,1 2026,FALMOUTH WATER DEPT,PCE,F,28 2026,FALMOUTH WATER DEPT,PFAS,F,38 2026,FALMOUTH WATER DEPT,SECCON,F,2 2026,FALMOUTH WATER DEPT,THM,F,40 -2026,FALMOUTH WATER DEPT,VOC,F,56 2026,FARMINGTON RIVER DINNER,SECCON,F,2 2026,FARMINGTON RIVER REG ELEM SCHOOL,SECCON,F,2 2026,FARMINGTON RIVER REG ELEM SCHOOL,VOC,F,56 @@ -167913,14 +167872,13 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,FRANKLIN WATER DEPARTMENT,VOC,F,236 2026,FRATERNAL ORDER OF EAGLES,SECCON,F,2 2026,FRATERNAL ORDER OF EAGLES,SODIUM,F,1 -2026,FREETOWN ELEMENTARY SCHOOL,PFAS,F,38 +2026,FREETOWN ELEMENTARY SCHOOL,PFAS,F,19 2026,FREETOWN WATER COMMISSION,HAA5,F,30 2026,FREETOWN WATER COMMISSION,THM,F,25 2026,FREETOWN/LAKEVILLE REGIONAL SCHOOL DIST.,INORG,F,14 2026,FREETOWN/LAKEVILLE REGIONAL SCHOOL DIST.,PFAS,F,19 2026,FREETOWN/LAKEVILLE REGIONAL SCHOOL DIST.,SECCON,F,2 2026,FREETOWN/LAKEVILLE REGIONAL SCHOOL DIST.,VOC,F,56 -2026,FREIGHT HOUSE ANTIQUES,NITRAT,F,1 2026,FRENCH KING MOTOR INN,NITRAT,F,1 2026,FRENCH KING MOTOR INN,SODIUM,F,1 2026,FRUITLANDS MUSEUM,SECCON,F,2 @@ -167932,14 +167890,12 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,GALE BROOK SCHOOL,SECCON,F,2 2026,GALE BROOK SCHOOL,VOC,F,55 2026,GARDNER WATER DEPARTMENT,HAA5,F,24 -2026,GARDNER WATER DEPARTMENT,INORG,F,13 -2026,GARDNER WATER DEPARTMENT,NITRAT,F,74 -2026,GARDNER WATER DEPARTMENT,SECCON,F,124 +2026,GARDNER WATER DEPARTMENT,NITRAT,F,64 +2026,GARDNER WATER DEPARTMENT,SECCON,F,108 2026,GARDNER WATER DEPARTMENT,SODIUM,F,4 2026,GARDNER WATER DEPARTMENT,THM,F,20 2026,GARDNER WATER DEPARTMENT,TOC,F,1 2026,GARDNER WATER DEPARTMENT,TOC,R,1 -2026,GARDNER WATER DEPARTMENT,VOC,F,62 2026,GARRISON PLACE CONDOMINIUM TRUST,PFAS,F,19 2026,GARRISON PLACE CONDOMINIUM TRUST,SECCON,F,1 2026,GEORGETOWN WATER DEPARTMENT,HAA5,F,12 @@ -167951,8 +167907,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,GILL ELEMENTARY SCHOOL,INORG,R,2 2026,GILL ELEMENTARY SCHOOL,SECCON,F,4 2026,GILL ELEMENTARY SCHOOL,SECCON,R,4 -2026,GLEASON PUBLIC LIBRARY,NITRAT,F,2 -2026,GLEASON PUBLIC LIBRARY,NITRAT,R,2 +2026,GLEASON PUBLIC LIBRARY,NITRAT,F,1 2026,GLEASON PUBLIC LIBRARY,PFAS,F,19 2026,GLEASON PUBLIC LIBRARY,PFAS,R,19 2026,GLOUCESTER PUBLIC UTILITY DIVISION,HAA5,F,24 @@ -167962,8 +167917,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,GLOUCESTER PUBLIC UTILITY DIVISION,PFAS,F,38 2026,GLOUCESTER PUBLIC UTILITY DIVISION,SOC,F,1 2026,GLOUCESTER PUBLIC UTILITY DIVISION,THM,F,20 -2026,GOLDEN EAGLE RESTAURANT,NITRAT,F,1 -2026,GOLDEN EAGLE RESTAURANT,NITRIT,F,1 2026,GOSNOLD WATER DEPT,PCE,F,1 2026,GOSNOLD WATER DEPT,SOC,F,45 2026,GOULD FARM,SECCON,F,4 @@ -167976,12 +167929,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,GRAFTON WATER DISTRICT,VOC,F,112 2026,GRAN VAL FARM,NITRAT,F,1 2026,GRAN VAL FARM,NITRIT,F,1 -2026,GRANBY HOUSING AUTHORITY,SECCON,F,4 -2026,GRANBY HOUSING AUTHORITY,SECCON,R,4 +2026,GRANBY HOUSING AUTHORITY,SECCON,F,2 +2026,GRANBY HOUSING AUTHORITY,SECCON,R,2 2026,GRANBY HOUSING AUTHORITY,VOC,F,64 2026,GRANBY JR SR HIGH AND EAST MEADOW SCHOOL,NITRAT,F,1 2026,GRANBY PUBLIC SAFETY COMPLEX,NITRAT,F,1 -2026,GRAND VIEW,SECCON,F,2 2026,"GREAT BROOK FARM, INC.",SECCON,F,1 2026,GREATHORSE COUNTRY CLUB,VOC,F,128 2026,"GREEN ACRES DAYCARE CENTER, INC.",INORG,F,2 @@ -167996,13 +167948,12 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,GRISWOLDVILLE WATER DISTRICT,SECCON,F,2 2026,GROTON WATER DEPARTMENT,PFAS,F,19 2026,GROTON WATER DEPARTMENT,SECCON,F,4 -2026,GROVELAND WATER DEPARTMENT,PFAS,F,133 +2026,GROVELAND WATER DEPARTMENT,PFAS,F,114 2026,GROVELAND WATER DEPARTMENT,SECCON,F,1 2026,GROVELAND WATER DEPARTMENT,VOC,F,60 2026,GUILDER HILLS HOMEOWNERS ASSOCIATION,NITRAT,F,1 2026,GUILDER HILLS HOMEOWNERS ASSOCIATION,NITRIT,F,1 -2026,HADLEY DPW WATER DIVISION,SECCON,F,40 -2026,HADLEY DPW WATER DIVISION,SECCON,R,6 +2026,HADLEY DPW WATER DIVISION,SECCON,F,36 2026,HALE MIDDLE SCHOOL,INORG,F,12 2026,HALE MIDDLE SCHOOL,INORG,R,1 2026,HALE MIDDLE SCHOOL,NITRAT,F,1 @@ -168051,7 +168002,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,HARVARD LANES,INORG,F,1 2026,HARVARD LANES,INORG,R,1 2026,HARVARD PLAZA,SECCON,F,1 -2026,HARVARD RIDGE CONDOMINIUM,PFAS,F,190 +2026,HARVARD RIDGE CONDOMINIUM,PFAS,F,133 2026,HARVARD RIDGE CONDOMINIUM,SECCON,F,5 2026,HARVARD RIDGE CONDOMINIUM,SECCON,R,5 2026,HARVEST FARM SPRINGS PUBLIC WATER SUPPLY,INORG,F,4 @@ -168097,10 +168048,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,HILLCREST WATER DISTRICT,THM,F,10 2026,HILLSIDE HEIGHTS OF GRANBY,NITRAT,F,1 2026,HILLSIDE HEIGHTS OF GRANBY,SECCON,F,2 -2026,HILLTOWN COMMUNITY DEVELOPMENT CORP,NITRAT,F,3 -2026,HILLTOWN COMMUNITY DEVELOPMENT CORP,SECCON,F,9 -2026,HILLTOWN COMMUNITY DEVELOPMENT CORP,SECCON,R,9 -2026,HILLTOWN COMMUNITY DEVELOPMENT CORP,SODIUM,F,1 +2026,HILLTOWN COMMUNITY DEVELOPMENT CORP,NITRAT,F,2 +2026,HILLTOWN COMMUNITY DEVELOPMENT CORP,SECCON,F,5 +2026,HILLTOWN COMMUNITY DEVELOPMENT CORP,SECCON,R,5 2026,HILLTOWN HOT PIES LLC,NITRAT,F,1 2026,HINSDALE WATER DEPT,HAA5,F,6 2026,HINSDALE WATER DEPT,SECCON,F,2 @@ -168130,7 +168080,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,HOLY VIRGIN MARY SPIRITUAL VINEYARD,VOC,R,120 2026,HOLYOKE WATER WORKS,HAA5,F,24 2026,HOLYOKE WATER WORKS,PFAS,F,38 -2026,HOLYOKE WATER WORKS,SOC,F,180 +2026,HOLYOKE WATER WORKS,SOC,F,135 2026,HOLYOKE WATER WORKS,THM,F,20 2026,HOPEDALE WATER DEPARTMENT,HAA5,F,12 2026,HOPEDALE WATER DEPARTMENT,PFAS,F,19 @@ -168177,7 +168127,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,HUTCHINSON WATER LLC,INORG,F,12 2026,HUTCHINSON WATER LLC,NITRAT,F,1 2026,HUTCHINSON WATER LLC,NITRIT,F,1 -2026,HUTCHINSON WATER LLC,SECCON,F,15 +2026,HUTCHINSON WATER LLC,SECCON,F,12 2026,HUTCHINSON WATER LLC,SODIUM,F,1 2026,HUTCHINSON WATER LLC,VOC,F,56 2026,"HYANNIS WATER SYSTEM, TOWN OF BARNSTABLE",HAA5,F,24 @@ -168228,13 +168178,13 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,JAKES PATH PWS,SECCON,F,4 2026,JAKES PATH PWS,SOC,F,45 2026,JAKES PATH PWS,VOC,F,59 -2026,JIMINY PEAK RESORT,NITRAT,F,5 -2026,JIMINY PEAK RESORT,SECCON,F,6 -2026,JIMINY PEAK RESORT,SECCON,R,4 -2026,JS BRYANT SCHOOL,INORG,F,13 +2026,JIMINY PEAK RESORT,NITRAT,F,4 +2026,JIMINY PEAK RESORT,SECCON,F,4 +2026,JIMINY PEAK RESORT,SECCON,R,2 +2026,JS BRYANT SCHOOL,INORG,F,12 2026,JS BRYANT SCHOOL,NITRAT,F,1 2026,JS BRYANT SCHOOL,NITRIT,F,1 -2026,JS BRYANT SCHOOL,PFAS,F,38 +2026,JS BRYANT SCHOOL,PFAS,F,19 2026,JS BRYANT SCHOOL,SOC,F,45 2026,JS BRYANT SCHOOL,SODIUM,F,1 2026,JS BRYANT SCHOOL,VOC,F,55 @@ -168278,7 +168228,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,KOCH RT2 TOYOTA / MYSA,VOC,R,112 2026,KUEHNS WAY LLC,VOC,F,56 2026,LAKE POINT VILLAGE,SOC,F,45 -2026,LAKE POINT VILLAGE,VOC,F,56 2026,LAKEVILLE GOLF CLUB,SECCON,F,18 2026,LAKEVILLE GOLF CLUB,SODIUM,F,1 2026,LANCASTER COUNTY ROAD LLC,VOC,F,56 @@ -168316,14 +168265,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,LELAND FARMS,NITRAT,R,5 2026,LELAND FARMS,PFAS,F,57 2026,LELAND FARMS,SECCON,R,70 -2026,LENOX DPW WATER DIVISION,PFAS,F,19 2026,LEOMINSTER WATER DIVISION,HAA5,F,48 -2026,LEOMINSTER WATER DIVISION,NITRAT,F,4 2026,LEOMINSTER WATER DIVISION,SOC,F,2 2026,LEOMINSTER WATER DIVISION,THM,F,40 2026,LEOMINSTER WATER DIVISION,TOC,F,3 2026,LEOMINSTER WATER DIVISION,TOC,R,3 -2026,LEOMINSTER WATER DIVISION,VOC,F,220 2026,LEVERETT ELEMENTARY SCHOOL,PFAS,F,19 2026,LEVERETT ELEMENTARY SCHOOL,SECCON,F,2 2026,LEVERETT ELEMENTARY SCHOOL,SECCON,R,2 @@ -168361,13 +168307,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,LITTLE PEOPLES COLLEGE,NITRAT,F,1 2026,LITTLE PEOPLES COLLEGE,NITRIT,F,1 2026,LITTLETON WATER DEPARTMENT,INORG,F,1 -2026,LITTLETON WATER DEPARTMENT,INORG,R,15 -2026,LITTLETON WATER DEPARTMENT,NITRAT,R,1 +2026,LITTLETON WATER DEPARTMENT,INORG,R,2 2026,LITTLETON WATER DEPARTMENT,PFAS,F,57 2026,LITTLETON WATER DEPARTMENT,PFAS,R,133 2026,LITTLETON WATER DEPARTMENT,SECCON,F,4 -2026,LITTLETON WATER DEPARTMENT,SECCON,R,6 -2026,LITTLETON WATER DEPARTMENT,VOC,R,55 +2026,LITTLETON WATER DEPARTMENT,SECCON,R,2 2026,"LKQ RT. 16 USED AUTO PARTS, INC.",INORG,F,1 2026,"LKQ RT. 16 USED AUTO PARTS, INC.",INORG,R,2 2026,"LKQ RT. 16 USED AUTO PARTS, INC.",NITRAT,F,1 @@ -168426,10 +168370,10 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,MANCHESTER BY THE SEA DPW,THM,F,10 2026,MANSFIELD WATER DIVISION,HAA5,F,18 2026,MANSFIELD WATER DIVISION,HAA5,R,6 -2026,MANSFIELD WATER DIVISION,INORG,F,28 +2026,MANSFIELD WATER DIVISION,INORG,F,27 2026,MANSFIELD WATER DIVISION,NITRAT,F,1 2026,MANSFIELD WATER DIVISION,NITRIT,F,1 -2026,MANSFIELD WATER DIVISION,PFAS,F,95 +2026,MANSFIELD WATER DIVISION,PFAS,F,76 2026,MANSFIELD WATER DIVISION,PFAS,R,19 2026,MANSFIELD WATER DIVISION,SOC,F,135 2026,MANSFIELD WATER DIVISION,THM,F,15 @@ -168467,12 +168411,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,"MAYNARD DPW, WATER DIVISION",THM,F,20 2026,MCI BRIDGEWATER,HAA5,F,12 2026,MCI BRIDGEWATER,THM,F,10 -2026,MCI NORFOLK/CEDAR JUNCTION/WALPOLE,NITRAT,F,1 -2026,MCI NORFOLK/CEDAR JUNCTION/WALPOLE,NITRAT,R,3 -2026,MCI NORFOLK/CEDAR JUNCTION/WALPOLE,SECCON,F,4 -2026,MCI NORFOLK/CEDAR JUNCTION/WALPOLE,SECCON,R,6 -2026,MCI NORFOLK/CEDAR JUNCTION/WALPOLE,VOC,F,62 -2026,MCI NORFOLK/CEDAR JUNCTION/WALPOLE,VOC,R,186 +2026,MCI NORFOLK/CEDAR JUNCTION/WALPOLE,SECCON,F,2 2026,MCI SHIRLEY,INORG,F,1 2026,MCI SHIRLEY,PFAS,F,19 2026,MCI SHIRLEY,SECCON,F,2 @@ -168501,21 +168440,15 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,MEMORIAL DR. IND. PARK SITE 2 (RIFL),INORG,F,52 2026,MEMORIAL DR. IND. PARK SITE 2 (RIFL),NITRAT,F,4 2026,MEMORIAL DR. IND. PARK SITE 2 (RIFL),NITRIT,F,4 -2026,MEMORIAL DR. IND. PARK SITE 2 (RIFL),SECCON,F,7 +2026,MEMORIAL DR. IND. PARK SITE 2 (RIFL),SECCON,F,5 2026,MEMORIAL DR. IND. PARK SITE 2 (RIFL),SOC,F,1 2026,MEMORIAL DR. IND. PARK SITE 2 (RIFL),VOC,F,240 -2026,MENDON HOUSING AUTHORITY,NITRAT,F,1 2026,MENDON TOWN HALL CAMPUS,NITRAT,F,1 2026,MENDON TOWN HALL CAMPUS,NITRAT,R,1 2026,MENDON TOWN HALL CAMPUS,PFAS,F,19 -2026,MENDON TOWN HALL CAMPUS,SECCON,F,8 -2026,MENDON TOWN HALL CAMPUS,SECCON,R,2 +2026,MENDON TOWN HALL CAMPUS,SECCON,F,4 2026,MENDON TOWN HALL CAMPUS,VOC,F,62 2026,MENDON TOWN HALL CAMPUS,VOC,R,62 -2026,MENDON TWIN DRIVE IN,NITRAT,F,1 -2026,MENDON TWIN DRIVE IN,NITRIT,F,1 -2026,MENDON TWIN DRIVE IN,SECCON,F,2 -2026,MENDON TWIN DRIVE IN,SECCON,R,2 2026,MENDON WATER DEPARTMENT,HAA5,F,6 2026,MENDON WATER DEPARTMENT,THM,F,5 2026,MENEMSHA WATER COMPANY,SOC,F,45 @@ -168531,7 +168464,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,METHUEN WATER DEPT,THM,F,20 2026,METHUEN WATER DEPT,VOC,F,55 2026,METROWEST YMCA,PFAS,F,19 -2026,"MHC GATEWAY TO CAPE COD, LLC",NITRAT,F,1 2026,MICRO MECH,PFAS,F,38 2026,MIDDLEBOROUGH WATER SUPPLY,HAA5,F,24 2026,MIDDLEBOROUGH WATER SUPPLY,INORG,F,35 @@ -168575,7 +168507,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,MILLVILLE ELEMENTARY SCHOOL,THM,R,95 2026,MILLVILLE ELEMENTARY SCHOOL,VOC,F,54 2026,MILLVILLE ELEMENTARY SCHOOL,VOC,R,55 -2026,MINERAL HILLS WINERY/GODARD RED HEN FARM,NITRAT,F,1 2026,MISCOE HILL MIDDLE SCHOOL,INORG,F,1 2026,MISCOE HILL MIDDLE SCHOOL,INORG,R,1 2026,MISCOE HILL MIDDLE SCHOOL,NITRAT,F,1 @@ -168612,7 +168543,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,MONTEREY WATER COMPANY,SECCON,R,2 2026,MONUMENT MTN REGIONAL HS,SECCON,F,2 2026,MONUMENT MTN REGIONAL HS,SECCON,R,2 -2026,MONUMENT MTN REGIONAL HS,VOC,F,56 2026,MOUNT ST MARYS ABBEY,VOC,F,59 2026,MOUNTAIN GROVE ASSOCIATION,NITRAT,F,2 2026,MOUNTAIN GROVE ASSOCIATION,NITRIT,F,1 @@ -168640,8 +168570,8 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,NATICK WATER AND SEWER DIVISION,HAA5,F,24 2026,NATICK WATER AND SEWER DIVISION,NITRAT,F,4 2026,NATICK WATER AND SEWER DIVISION,NITRIT,F,4 -2026,NATICK WATER AND SEWER DIVISION,PFAS,F,283 -2026,NATICK WATER AND SEWER DIVISION,PFAS,R,1045 +2026,NATICK WATER AND SEWER DIVISION,PFAS,F,245 +2026,NATICK WATER AND SEWER DIVISION,PFAS,R,874 2026,NATICK WATER AND SEWER DIVISION,THM,F,20 2026,NATICK WATER AND SEWER DIVISION,VOC,F,165 2026,NATIONAL TECHNICAL SYSTEMS,PFAS,F,19 @@ -168683,12 +168613,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,NOQUOCHOKE VILLAGE LLC,SOC,F,45 2026,NOQUOCHOKE VILLAGE LLC,VOC,F,56 2026,NORFOLK WATER DIVISION,PFAS,F,57 -2026,NORFOLK WATER DIVISION,SECCON,F,4 +2026,NORFOLK WATER DIVISION,SECCON,F,3 2026,NORFOLK WATER DIVISION,SECCON,R,1 2026,NORTH EGREMONT COUNTRY STORE INC,NITRAT,F,1 2026,NORTH EGREMONT COUNTRY STORE INC,NITRIT,F,1 2026,NORTH ADAMS WATER DEPT,HAA5,F,24 -2026,NORTH ADAMS WATER DEPT,PFAS,F,38 2026,NORTH ADAMS WATER DEPT,SECCON,F,4 2026,NORTH ADAMS WATER DEPT,SECCON,R,4 2026,NORTH ADAMS WATER DEPT,THM,F,20 @@ -168712,7 +168641,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,NORTH BROOKFIELD WATER DEPARTMENT,THM,F,10 2026,NORTH CARVER WATER DISTRICT,HAA5,F,6 2026,NORTH CARVER WATER DISTRICT,THM,F,5 -2026,NORTH CHELMSFORD WATER DIST,CHLRTE,F,6 +2026,NORTH CHELMSFORD WATER DIST,CHLRTE,F,3 2026,NORTH CHELMSFORD WATER DIST,PFAS,F,19 2026,NORTH DIGHTON FIRE DISTRICT,HAA5,F,12 2026,NORTH DIGHTON FIRE DISTRICT,THM,F,10 @@ -168739,9 +168668,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,NORTHAMPTON WATER DIVISION,THM,F,10 2026,NORTHBRIDGE WATER DIVISION,HAA5,F,6 2026,NORTHBRIDGE WATER DIVISION,THM,F,5 -2026,NORTHFIELD MT HERMON SCHOOL,SECCON,F,4 -2026,NORTHFIELD MT HERMON SCHOOL,SECCON,R,8 -2026,NORTHFIELD MT HERMON SCHOOL,VOC,F,110 +2026,NORTHFIELD MT HERMON SCHOOL,SECCON,F,2 +2026,NORTHFIELD MT HERMON SCHOOL,SECCON,R,4 +2026,NORTHFIELD MT HERMON SCHOOL,VOC,F,56 2026,NORTHFIELD MTN STATION VISITOR CENTER,INORG,F,2 2026,NORTHFIELD MTN STATION VISITOR CENTER,SECCON,F,2 2026,NORTHFIELD MTN STATION VISITOR CENTER,SECCON,R,2 @@ -168802,24 +168731,17 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,OUT WATER LLC,SECCON,R,2 2026,OUT WATER LLC,VOC,F,56 2026,OUT WATER LLC,VOC,R,56 -2026,PADDOCK ESTATES,INORG,F,13 -2026,PADDOCK ESTATES,NITRAT,F,1 -2026,PADDOCK ESTATES,NITRAT,R,2 -2026,PADDOCK ESTATES,NITRIT,F,1 -2026,PADDOCK ESTATES,NITRIT,R,2 -2026,PADDOCK ESTATES,SECCON,F,20 -2026,PADDOCK ESTATES,SECCON,R,16 -2026,PADDOCK ESTATES,VOC,F,62 -2026,PADDOCK ESTATES,VOC,R,124 +2026,PADDOCK ESTATES,SECCON,F,18 +2026,PADDOCK ESTATES,SECCON,R,4 2026,PADELFORD BERKLEY LLC,NITRAT,F,1 2026,PADELFORD BERKLEY LLC,RADIO,F,3 2026,PADELFORD BERKLEY LLC,SODIUM,F,1 2026,PADELFORD BERKLEY LLC,VOC,F,112 2026,PALMER WATER DISTRICT NO.1,HAA5,F,12 -2026,PALMER WATER DISTRICT NO.1,SECCON,F,14 +2026,PALMER WATER DISTRICT NO.1,SECCON,F,12 2026,PALMER WATER DISTRICT NO.1,SECCON,R,18 2026,PALMER WATER DISTRICT NO.1,THM,F,10 -2026,PALMER WATER DISTRICT NO.1,VOC,F,128 +2026,PALMER WATER DISTRICT NO.1,VOC,F,64 2026,PAPA BOBS LLC,NITRAT,F,1 2026,PAPA BOBS LLC,SECCON,F,4 2026,PAPA BOBS LLC,SECCON,R,4 @@ -168847,16 +168769,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,PEMBROKE WATER DIVISION DPW,NITRIT,F,6 2026,PEMBROKE WATER DIVISION DPW,PCE,F,3 2026,PEMBROKE WATER DIVISION DPW,SECCON,F,36 -2026,PEPPERELL DPW WATER DIVISION,INORG,F,1 -2026,PEPPERELL DPW WATER DIVISION,INORG,R,1 -2026,PEPPERELL DPW WATER DIVISION,NITRAT,F,1 -2026,PEPPERELL DPW WATER DIVISION,NITRAT,R,2 2026,PEPPERELL DPW WATER DIVISION,PFAS,F,57 2026,PEPPERELL DPW WATER DIVISION,PFAS,R,114 -2026,PEPPERELL DPW WATER DIVISION,SECCON,F,4 -2026,PEPPERELL DPW WATER DIVISION,SECCON,R,4 -2026,PEPPERELL DPW WATER DIVISION,VOC,F,55 -2026,PEPPERELL DPW WATER DIVISION,VOC,R,110 +2026,PEPPERELL DPW WATER DIVISION,SECCON,F,2 2026,PEQUOT HIGHLANDS,HAA5,F,12 2026,PEQUOT HIGHLANDS,THM,F,10 2026,PETERSHAM CENTER SCHOOL,SECCON,F,2 @@ -168881,7 +168796,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,PICONICS,NITRAT,F,1 2026,PICONICS,PFAS,F,38 2026,PICONICS,PFAS,R,38 -2026,PILGRIM ACRES CONDO ASSOCIATION,NITRAT,F,1 2026,PILOT GROVE APARTMENTS,PFAS,F,38 2026,PILOT GROVE APARTMENTS II,PFAS,F,57 2026,PILOT TRAVEL CENTER,NITRAT,F,1 @@ -168902,7 +168816,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,PINE VALLEY PLANTATION,PFAS,F,19 2026,PINE VALLEY PLANTATION,VOC,F,128 2026,PINECROFT SCHOOL,SECCON,F,1 -2026,PINETREE VILLAGE,NITRAT,F,5 +2026,PINETREE VILLAGE,NITRAT,F,4 2026,PINETREE VILLAGE,NITRIT,F,1 2026,PINETREE VILLAGE,PFAS,F,19 2026,PINETREE VILLAGE,SECCON,F,2 @@ -168914,8 +168828,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,PIONEER VALLEY YACHT CLUB,SECCON,F,2 2026,PITTSFIELD DPU WATER DEPT,HAA5,F,24 2026,PITTSFIELD DPU WATER DEPT,PFAS,F,38 -2026,PITTSFIELD DPU WATER DEPT,SECCON,F,4 -2026,PITTSFIELD DPU WATER DEPT,SECCON,R,4 2026,PITTSFIELD DPU WATER DEPT,THM,F,20 2026,PLAINVILLE WATER DEPARTMENT,HAA5,F,12 2026,PLAINVILLE WATER DEPARTMENT,SECCON,F,1 @@ -168941,9 +168853,8 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,PLYMPTON PLAZA,NITRAT,F,1 2026,PLYMPTON PLAZA,NITRIT,F,1 2026,PLYMPTON PLAZA,SECCON,F,2 -2026,POCAHONTAS SPRING WATER (VND),NITRAT,F,2 -2026,POND RIDGE CONDO ASSN,INORG,F,2 -2026,POND RIDGE CONDO ASSN,SECCON,F,4 +2026,POCAHONTAS SPRING WATER (VND),NITRAT,F,1 +2026,POND RIDGE CONDO ASSN,INORG,F,1 2026,POST OFFICE PLACE,INORG,F,13 2026,POST OFFICE PLACE,NITRAT,F,1 2026,POST OFFICE PLACE,NITRIT,F,1 @@ -168957,8 +168868,8 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,PRINCETON TOWN CAMPUS,PFAS,R,19 2026,PRINDLE POND CONFERENCE CENTER,NITRAT,F,6 2026,PRINDLE POND CONFERENCE CENTER,PFAS,F,114 -2026,PRINDLE POND CONFERENCE CENTER,SECCON,F,11 -2026,PRINDLE POND CONFERENCE CENTER,SECCON,R,6 +2026,PRINDLE POND CONFERENCE CENTER,SECCON,F,9 +2026,PRINDLE POND CONFERENCE CENTER,SECCON,R,4 2026,PRINDLE POND CONFERENCE CENTER,VOC,F,330 2026,QUABBIN ADULT MEDICINE,NITRAT,F,1 2026,QUABBIN ADULT MEDICINE,NITRIT,F,1 @@ -168967,8 +168878,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,QUABBIN WOODS RESTAURANT,NITRIT,F,1 2026,QUABBIN WOODS RESTAURANT,SODIUM,F,1 2026,QUABBIN WOODS RESTAURANT,VOC,F,56 -2026,QUINEBAUG COVE CAMPSITE,NITRAT,F,2 -2026,QUINEBAUG COVE CAMPSITE,NITRIT,F,2 2026,RACHELS LAKESIDE,NITRAT,F,1 2026,RANDOLPH WATER DEPARTMENT,HAA5,F,24 2026,RANDOLPH WATER DEPARTMENT,SODIUM,F,1 @@ -168987,15 +168896,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,RAYNHAM CENTER WATER DISTRICT,PFAS,F,95 2026,RAYNHAM CENTER WATER DISTRICT,THM,F,20 2026,RAYNHAM CENTER WATER DISTRICT,VOC,F,177 -2026,RED ROCK GRILL AND BAR LOUNGE,NITRAT,F,1 2026,REDIKER SOFTWARE,INORG,F,1 2026,REGENCY AT BOLTON CONDOMINIUMS,SECCON,F,2 -2026,REGENCY AT STOW CONDOMINIUMS,NITRAT,F,1 -2026,REGENCY AT STOW CONDOMINIUMS,NITRAT,R,2 2026,REGENCY AT STOW CONDOMINIUMS,PFAS,F,19 -2026,REGENCY AT STOW CONDOMINIUMS,SECCON,F,18 -2026,REGENCY AT STOW CONDOMINIUMS,SECCON,R,4 -2026,REGENCY AT STOW CONDOMINIUMS,VOC,F,55 2026,REHOBOTH PUBLIC SAFETY BUILDING,PFAS,F,19 2026,REHOBOTH SENIOR CENTER,NITRAT,F,1 2026,REHOBOTH SENIOR CENTER,PFAS,F,38 @@ -169008,7 +168911,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,RIVERBRIDGE,PFAS,F,19 2026,RIVERSIDE COMMUNITY CARE,SECCON,F,5 2026,ROCHESTER GOLF CLUB,SODIUM,F,1 -2026,ROCHESTER MEMORIAL SCHOOL,SECCON,F,1 2026,ROCKPORT WATER DEPT,HAA5,F,12 2026,ROCKPORT WATER DEPT,NITRAT,F,1 2026,ROCKPORT WATER DEPT,NITRIT,F,1 @@ -169020,7 +168922,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,ROWLEY WATER DEPARTMENT,THM,F,10 2026,ROWLEY WATER DEPARTMENT,VOC,F,60 2026,ROYAL PIZZA KAC 68 MAIN STREET LLC,SECCON,F,1 -2026,ROYALSTON COMMUNITY SCHOOL,SECCON,F,14 +2026,ROYALSTON COMMUNITY SCHOOL,SECCON,F,11 2026,ROYALSTON COMMUNITY SCHOOL,SECCON,R,2 2026,RUPP REALTY TRUST,PFAS,F,38 2026,RUPP REALTY TRUST,SECCON,F,2 @@ -169033,9 +168935,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,SACRED HEART ELEMENTARY SCHOOL,INORG,F,14 2026,SAINT BENEDICT ABBEY,INORG,F,1 2026,SAINT JOSEPHS ABBEY,SECCON,F,8 -2026,SALEM AND BEVERLY WATER SUPPLY BOARD,HAA5,F,96 +2026,SALEM AND BEVERLY WATER SUPPLY BOARD,HAA5,F,48 2026,SALEM AND BEVERLY WATER SUPPLY BOARD,PFAS,F,19 -2026,SALEM AND BEVERLY WATER SUPPLY BOARD,THM,F,80 +2026,SALEM AND BEVERLY WATER SUPPLY BOARD,THM,F,40 2026,SALISBURY WATER DIVISION,HAA5,F,24 2026,SALISBURY WATER DIVISION,PFAS,F,19 2026,SALISBURY WATER DIVISION,THM,F,20 @@ -169055,7 +168957,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,SANDWICH WATER DISTRICT,SODIUM,F,9 2026,SANDWICH WATER DISTRICT,THM,F,20 2026,SAVOY ELEMENTARY SCHOOL,SECCON,F,2 -2026,SAVOY ELEMENTARY SCHOOL,SECCON,R,7 +2026,SAVOY ELEMENTARY SCHOOL,SECCON,R,6 2026,SAVOY ELEMENTARY SCHOOL,VOC,F,56 2026,SAWYER HILL ECOVILLAGE,NITRAT,F,1 2026,SAWYER HILL ECOVILLAGE,NITRAT,R,2 @@ -169068,12 +168970,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,SCITUATE WATER DIVISION,INORG,F,13 2026,SCITUATE WATER DIVISION,NITRAT,F,4 2026,SCITUATE WATER DIVISION,NITRIT,F,2 -2026,SCITUATE WATER DIVISION,SECCON,F,33 +2026,SCITUATE WATER DIVISION,SECCON,F,24 2026,SCITUATE WATER DIVISION,THM,F,20 2026,SEA MIST RESORT,NITRAT,F,1 2026,SEA OAKS CONDOMINIUMS,VOC,F,56 2026,SEEKONK WATER DISTRICT,HAA5,F,24 -2026,SEEKONK WATER DISTRICT,NITRAT,F,1 2026,SEEKONK WATER DISTRICT,PFAS,F,19 2026,SEEKONK WATER DISTRICT,THM,F,20 2026,SEEKONK WATER DISTRICT,VOC,F,56 @@ -169090,7 +168991,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,SHELBURNE FALLS COFFEE ROASTERS,SECCON,F,4 2026,SHELBURNE FALLS FIRE DISTRICT,SECCON,F,4 2026,SHELBURNE FALLS FIRE DISTRICT,SECCON,R,4 -2026,SHERATON FOUR POINTS,NITRAT,F,3 +2026,SHERATON FOUR POINTS,NITRAT,F,2 2026,SHERATON FOUR POINTS,PFAS,F,19 2026,SHERBORN MARKET,VOC,F,124 2026,SHERBORN TOWN OFFICES; POLICE; LIBRARY,PFAS,F,57 @@ -169132,17 +169033,17 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,SOUTH DEERFIELD WATER SUPPLY DISTRICT,HAA5,F,29 2026,SOUTH DEERFIELD WATER SUPPLY DISTRICT,THM,F,30 2026,SOUTH GRAFTON WATER DISTRICT,PFAS,F,19 -2026,SOUTH GRAFTON WATER DISTRICT,PFAS,R,76 +2026,SOUTH GRAFTON WATER DISTRICT,PFAS,R,57 2026,SOUTH HADLEY FD #1 (MWRA),HAA5,F,24 2026,SOUTH HADLEY FD #1 (MWRA),THM,F,20 -2026,SOUTH MEADOW VILLAGE,INORG,F,14 +2026,SOUTH MEADOW VILLAGE,INORG,F,13 2026,SOUTH MEADOW VILLAGE,SOC,F,37 2026,SOUTH MEADOW VILLAGE,VOC,F,62 2026,SOUTH ROYALSTON IMPROVEMENT CORP,INORG,F,2 2026,SOUTH ROYALSTON IMPROVEMENT CORP,SECCON,F,4 2026,SOUTH ROYALSTON IMPROVEMENT CORP,SECCON,R,4 2026,SOUTH ROYALSTON IMPROVEMENT CORP,VOC,F,64 -2026,SOUTHAMPTON WATER DEPT,SECCON,F,5 +2026,SOUTHAMPTON WATER DEPT,SECCON,F,4 2026,SOUTHAMPTON WATER DEPT,VOC,F,56 2026,SOUTHBRIDGE TOOL AND MANUFACTURING,NITRAT,F,1 2026,SOUTHBRIDGE TOOL AND MANUFACTURING,RADIO,F,1 @@ -169163,9 +169064,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,SOUTHFIELD WATER COMPANY,SECCON,F,2 2026,SOUTHFIELD WATER COMPANY,SECCON,R,2 2026,SOUTHFIELD WATER COMPANY,VOC,F,56 -2026,SOUTHWICK WATER DEPT,HAA5,F,24 +2026,SOUTHWICK WATER DEPT,HAA5,F,12 2026,SOUTHWICK WATER DEPT,PFAS,F,19 -2026,SOUTHWICK WATER DEPT,THM,F,20 +2026,SOUTHWICK WATER DEPT,THM,F,10 2026,SOUTHWICK WATER DEPT,VOC,F,56 2026,SOUTHWICKS ZOO,PFAS,F,19 2026,SPENCER WATER DEPARTMENT,SECCON,F,2 @@ -169207,7 +169108,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,STOCKBRIDGE WATER DEPT,INORG,F,1 2026,STOCKBRIDGE WATER DEPT,THM,F,5 2026,STONES THROW CONDOS,PFAS,F,19 -2026,STONES THROW CONDOS,SECCON,F,1 2026,STONY BROOK LODGE,VOC,F,64 2026,STOUGHTON WATER DEPARTMENT,INORG,F,53 2026,STOUGHTON WATER DEPARTMENT,NITRAT,F,4 @@ -169294,7 +169194,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,SWEET WOOD RETIREMENT COMMUNITY,SECCON,F,4 2026,SWEET WOOD RETIREMENT COMMUNITY,SECCON,R,18 2026,SWEET WOOD RETIREMENT COMMUNITY,VOC,F,56 -2026,SWEETWATER FOREST INC,NITRAT,F,2 2026,SWIFT RIVER,NITRAT,F,1 2026,SWIFT RIVER ELEMENTARY SCHOOL,INORG,F,1 2026,SWIFT RIVER ELEMENTARY SCHOOL,PFAS,F,57 @@ -169345,7 +169244,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,THE HINATA RETREAT LLC,SODIUM,F,2 2026,THE HINATA RETREAT LLC,VOC,F,112 2026,THE HOME FOR LITTLE WANDERERS,INORG,F,1 -2026,THE HOME FOR LITTLE WANDERERS,SECCON,F,17 +2026,THE HOME FOR LITTLE WANDERERS,SECCON,F,13 2026,THE HOME FOR LITTLE WANDERERS,SODIUM,F,1 2026,THE INTERNATIONAL,NITRAT,F,3 2026,THE INTERNATIONAL,PFAS,F,57 @@ -169366,14 +169265,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,THE NEW TESTAMENT CHURCH,SODIUM,F,1 2026,THE OXBOW,NITRAT,F,1 2026,THE PRESERVE AT HOPKINTON CONDO,PFAS,F,57 -2026,THE QUABBIN RETREAT,INORG,F,13 -2026,THE QUABBIN RETREAT,NITRAT,F,1 -2026,THE QUABBIN RETREAT,NITRIT,F,1 +2026,THE QUABBIN RETREAT,INORG,F,1 2026,THE QUABBIN RETREAT,RADIO,F,2 2026,THE QUABBIN RETREAT,RADIO,R,2 -2026,THE QUABBIN RETREAT,SECCON,F,4 -2026,THE QUABBIN RETREAT,SECCON,R,4 -2026,THE QUABBIN RETREAT,SODIUM,F,1 +2026,THE QUABBIN RETREAT,SECCON,F,2 +2026,THE QUABBIN RETREAT,SECCON,R,2 2026,THE RESERVE AT SPRING HILL,SECCON,F,1 2026,THE SPENCER HOUSE LLC,SECCON,F,2 2026,THE TAYLOR SCHOOL,NITRAT,F,1 @@ -169381,22 +169277,16 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,THE TAYLOR SCHOOL,SECCON,F,18 2026,THE TAYLOR SCHOOL,SECCON,R,2 2026,THE TAYLOR SCHOOL,VOC,F,56 -2026,THE TRURO CENTER CONDOMINIUM,VOC,F,56 2026,THE VILLAGE AT SHEPLEY HILL,PFAS,F,19 2026,THE VILLAGE AT SHEPLEY HILL,SECCON,F,2 2026,THE WESTPORTER,NITRAT,F,1 2026,THE WESTPORTER,NITRIT,F,1 2026,THE WESTPORTER,SECCON,F,2 2026,THE WESTPORTER,SODIUM,F,1 -2026,THE WOK,NITRAT,F,1 -2026,THE WOK,SODIUM,F,1 2026,THE WOODS AT WESTMINSTER,PFAS,F,19 2026,THE WOODS AT WESTMINSTER,PFAS,R,19 2026,THORNTON BURGESS MIDDLE SCHOOL,PFAS,F,38 2026,THORNTON BURGESS MIDDLE SCHOOL,SECCON,F,2 -2026,THREE RIVERS FIRE DISTRICT,SECCON,F,4 -2026,THREE RIVERS FIRE DISTRICT,SECCON,R,4 -2026,THREE RIVERS FIRE DISTRICT,VOC,F,128 2026,TISBURY WATER WORKS,INORG,F,13 2026,TISBURY WATER WORKS,NITRAT,F,3 2026,TISBURY WATER WORKS,NITRIT,F,3 @@ -169410,9 +169300,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,TOWN OF AVON,INORG,F,11 2026,TOWN OF AVON,PFAS,F,38 2026,TOWN OF AVON,VOC,F,56 -2026,TOWN OF EASTHAM,INORG,F,13 -2026,TOWN OF EASTHAM,NITRAT,F,1 -2026,TOWN OF EASTHAM,VOC,F,62 2026,TOWN OF HUBBARDSTON OFFICES,NITRAT,F,1 2026,TOWN OF HUBBARDSTON OFFICES,SECCON,F,6 2026,TOWN OF HUBBARDSTON OFFICES,SECCON,R,2 @@ -169473,9 +169360,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,VILLAGE AT GREYLOCK,SECCON,R,2 2026,VILLAGE AT GREYLOCK,SODIUM,F,1 2026,VILLAGE AT GREYLOCK,VOC,F,56 -2026,VILLAGE GREEN CAMPGROUND,NITRAT,F,1 -2026,VILLAGE GREEN CAMPGROUND,NITRIT,F,1 -2026,VILLAGE GREEN CAMPGROUND,SODIUM,F,1 2026,VILLAGE NURSERY SCHOOL,INORG,F,1 2026,VILLAGE SCHOOL,VOC,F,56 2026,VILLAGES AT STOW,SECCON,F,1 @@ -169500,9 +169384,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,WALPOLE WATER DEPT,SOC,F,1 2026,WALPOLE WATER DEPT,THM,F,20 2026,WALPOLE WATER DEPT,VOC,F,118 -2026,WANNACOMET WATER COMPANY,PCE,F,3 2026,WANNACOMET WATER COMPANY,PFAS,F,76 -2026,WANNACOMET WATER COMPANY,VOC,F,112 2026,WARE WATER DEPT,PFAS,F,19 2026,WARE WATER DEPT,SECCON,F,8 2026,WARE WATER DEPT,SECCON,R,8 @@ -169566,7 +169448,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,WEIR RIVER WATER SYSTEM,THM,F,20 2026,WELLESLEY COLLEGE,PFAS,F,57 2026,WELLESLEY COLLEGE,PFAS,R,34 -2026,WELLESLEY WATER DIVISION,HAA5,F,48 +2026,WELLESLEY WATER DIVISION,HAA5,F,24 2026,WELLESLEY WATER DIVISION,INORG,F,39 2026,WELLESLEY WATER DIVISION,INORG,R,4 2026,WELLESLEY WATER DIVISION,NITRAT,F,3 @@ -169574,7 +169456,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,WELLESLEY WATER DIVISION,PFAS,F,209 2026,WELLESLEY WATER DIVISION,PFAS,R,190 2026,WELLESLEY WATER DIVISION,SECCON,R,15 -2026,WELLESLEY WATER DIVISION,THM,F,40 +2026,WELLESLEY WATER DIVISION,THM,F,20 2026,WELLESLEY WATER DIVISION,VOC,F,192 2026,WELLFLEET APARTMENTS,INORG,F,14 2026,WELLFLEET APARTMENTS,NITRAT,F,1 @@ -169659,9 +169541,6 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,WHATELY WATER DEPARTMENT,SECCON,F,2 2026,WHATELY WATER DEPARTMENT,SECCON,R,4 2026,WHATELY WATER DEPARTMENT,VOC,F,56 -2026,WHEELWRIGHT WATER DISTRICT,SECCON,F,4 -2026,WHEELWRIGHT WATER DISTRICT,SECCON,R,4 -2026,WHITE BIRCH GARDEN APARTMENTS,SECCON,F,4 2026,WHITINSVILLE WATER COMPANY,HAA5,F,6 2026,WHITINSVILLE WATER COMPANY,PFAS,F,19 2026,WHITINSVILLE WATER COMPANY,SECCON,F,2 @@ -169708,22 +169587,18 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,WOBURN WATER DEPT.,VOC,R,56 2026,WOODHAVEN ELDER HOUSING COMMITTEE,INORG,F,14 2026,WOODHAVEN ELDER HOUSING COMMITTEE,INORG,R,14 -2026,WOODHAVEN ELDER HOUSING COMMITTEE,NITRAT,F,6 +2026,WOODHAVEN ELDER HOUSING COMMITTEE,NITRAT,F,5 2026,WOODHAVEN ELDER HOUSING COMMITTEE,NITRAT,R,10 -2026,WOODHAVEN ELDER HOUSING COMMITTEE,NITRIT,F,1 2026,WOODHAVEN ELDER HOUSING COMMITTEE,PFAS,F,19 2026,WOODHAVEN ELDER HOUSING COMMITTEE,SECCON,F,83 2026,WOODHAVEN ELDER HOUSING COMMITTEE,SECCON,R,102 -2026,WOODHAVEN ELDER HOUSING COMMITTEE,VOC,F,62 2026,WOODLAND MHP LLC,INORG,F,12 2026,WOODLAND MHP LLC,NITRAT,F,1 2026,WOODLAND MHP LLC,NITRIT,F,1 2026,WOODLAND MHP LLC,SECCON,F,2 2026,WOODLAND MHP LLC,SODIUM,F,1 -2026,WOODLAND WALK APARTMENTS,INORG,F,2 -2026,WOODLAND WALK APARTMENTS,INORG,R,5 -2026,WOODLAND WALK APARTMENTS,SECCON,F,2 -2026,WOODLAND WALK APARTMENTS,SECCON,R,8 +2026,WOODLAND WALK APARTMENTS,INORG,F,1 +2026,WOODLAND WALK APARTMENTS,INORG,R,1 2026,WOODWARD VILLAGE,PFAS,F,19 2026,WOODWARD VILLAGE,SECCON,F,6 2026,WOOLMAN HILL,NITRAT,F,1 diff --git a/docs/data/EEADP_drinkingWater_annual_sample.csv b/docs/data/EEADP_drinkingWater_annual_sample.csv index f839cab8..443eb26f 100644 --- a/docs/data/EEADP_drinkingWater_annual_sample.csv +++ b/docs/data/EEADP_drinkingWater_annual_sample.csv @@ -1,11 +1,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result -2015,ROCHESTER GOLF CLUB,NITRAT,F,1 -2002,LENOX DPW WATER DIVISION,NITRAT,F,1 -2010,CHARLEMONT 4FAMILY STORE,SODIUM,F,1 -2025,FIVE BRIDGE INN,NITRAT,F,1 -2003,ORLEANS/EASTHAM ELKS LODGE,NITRAT,F,1 -2002,THE HOME FOR LITTLE WANDERERS,NITRAT,F,1 -2024,STOW SHOPPING CENTER,SECCON,R,4 -2008,FRANCESCOS ITALIAN RESTAURANT,NITRIT,F,1 -2011,WEST TISBURY TOWN HALL,NITRAT,F,1 -2026,TURNERS FALLS WATER DEPT,SECCON,F,1 +2007,STILLWATER FASTENERS,PERCHL,F,1 +2007,SWEETWATER FOREST INC,NITRAT,F,2 +2012,"MAYNARD DPW, WATER DIVISION",HAA5,F,72 +2014,STURBRIDGE WATER DEPARTMENT,SECCON,R,8 +2003,ANDOVER WATER DEPT,HAA5,F,15 +2000,BOXBOROUGH MUNICIPAL BUILDINGS,NITRIT,F,2 +1996,MOHAWK PARK,NITRIT,F,1 +1999,HANSON WATER DEPARTMENT,VOC,F,11 +2020,STILL FOUR CORNERS RESTAURANT,NITRAT,F,1 +2002,ATTLEBORO WATER DEPT,THM,F,28 diff --git a/docs/data/EEADP_drinkingWater_sample.csv b/docs/data/EEADP_drinkingWater_sample.csv index 5d7e61bc..24be1210 100644 --- a/docs/data/EEADP_drinkingWater_sample.csv +++ b/docs/data/EEADP_drinkingWater_sample.csv @@ -1,11 +1,11 @@ DefContamLimitWithUnits,ResultWithUnit,ResultQualifierDescription,ReportingLimit,Id,PWSId,PWSName,Town,Class,ContaminantGroup,ChemicalName,CollectedDate,RaworFinished,Result,LocationName,SampleLocCode,LowerDetectLimit,AnalMeasQualif,AnalMeasQualifDesc,Rdl,Method,DetectionLimit,DefContamLimit,DefContamLimituom,RequiredDetectionLimit,LabRequiredDetectionLimit -,ND,,0.5000 UG/L,578706,2226011,PINEWOOD ON THE GREEN CONDOS,OXFORD,COM,VOC,"1,1-DICHLOROETHANE",2023-08-14,F,ND,AFTER TREATMENT (02G/03G),MULT,UG/L,,,0.5,EPA 524.2,0.5,,,0.5,0.5000 UG/L -,ND,,Not Recorded,3797056,4018000,TOWN OF AVON,AVON,COM,SOC,ALDICARB SULFOXIDE,2004-06-10,F,ND,MEMORIAL GP WELL # 1,10003,UG/L,,,,EPA 531.1,4.4,,,4.4,4.4000 UG/L -20 NG/L,ND,,1 NG/L,3660128,3128000,HAVERHILL WATER DEPT,HAVERHILL,COM,PFAS,PERFLUORODECANOIC ACID - PFDA,2026-01-04,F,ND,"WTP FINISHED (1S,3S,5S,7S)",10432,NG/L,,,1.0,EPA 537.1,0.061,20.0,NG/L,2.0,0.0610 NG/L -5 UG/L,ND,,0.5000 UG/L,3623878,1283012,WHEATLEIGH INN,STOCKBRIDGE,NC,VOC,PARA-DICHLOROBENZENE,2023-10-03,F,ND,POINT OF ENTRY POST TREATMENT,10000,UG/L,,,0.5,EPA 524.2,0.1,5.0,UG/L,0.5,0.1000 UG/L -,ND,,Not Recorded,6206604,1283017,HERON POND AT STOCKBRIDGE,STOCKBRIDGE,COM,VOC,BROMOCHLOROMETHANE,2015-07-30,F,ND,POINT OF ENTRY POST TREATMENT,10005,UG/L,,,,EPA 524.2,0.5,,,0.5,0.5000 UG/L -,0.0596 MG/L,,Not Recorded,1136905,1024013,COLD SPRING COUNTRY CLUB,BELCHERTOWN,NTNC,SECCON,MANGANESE,2017-04-20,F,0.0596,POINT OF ENTRY POST TREATMENT,10001,MG/L,,,,EPA 200.7,0.004,,,0.05,0.0040 MG/L -10 MG/L,2.02 MG/L,,Not Recorded,5552594,2037013,APPLEWOOD COMMUNITY CORPORATION,BOXBOROUGH,COM,NITRAT,NITRATE,2005-05-09,F,2.02,WELL #2 - FINISHED ENTRY POINT,02G,MG/L,,,,SM 4500-NO3-F,0.05,10.0,MG/L,1.0,0.0500 MG/L -,1.58 UG/L,,1 UG/L,1932891,3229000,PEABODY WATER DEPT.,PEABODY,COM,HAA5,MONOCHLOROACETIC ACID,2023-05-17,F,1.58,3 CENTENNIAL DRIVE,10302,UG/L,,,1.0,EPA 552.3,1.0,,,5.0,1.0000 UG/L -0.2000 UG/L,ND,,Not Recorded,1922903,3330019,HAYSTACK ESTATES,WESTFORD,COM,SOC,DIBROMOCHLOROPROPANE,2009-04-23,F,ND,TREATED WATER: WELL #1 & #2,MULT,UG/L,,,,EPA 504.1,0.02,0.2,UG/L,0.02,0.0200 UG/L -2 UG/L,ND,,Not Recorded,2617422,4001000,ABINGTON/ROCKLAND JOINT WTR. WORKS,ROCKLAND,COM,SOC,CHLORDANE,2003-12-15,F,ND,"MYERS AVE.WELLS MULTIPLE 01G,02G,03G,04G",10005,UG/L,,,,EPA 505,0.2,2.0,UG/L,0.2,0.2000 UG/L +1000 UG/L,ND,,0.5000 UG/L,1420973,2328000,WESTBOROUGH WATER DEPARTMENT,WESTBOROUGH,COM,VOC,TOLUENE,2022-06-28 00:00:00,F,ND,FINISHED: HOPKINTON ROAD WELL,01G,UG/L,,,0.5,EPA 524.2,0.5,1000.0,UG/L,0.5,0.5000 UG/L +,ND,,Not Recorded,2910485,4020002,CENTERVILLE OSTERVILLE MARSTONS MILLS WD,BARNSTABLE,COM,VOC,"2,2-DICHLOROPROPANE",2013-07-31 00:00:00,F,ND,12 & 13 MURRAY,10018,UG/L,,,,EPA 524.2,0.5,,,0.5,0.5000 UG/L +10000 UG/L,ND,,0.5000 UG/L,899365,4307000,WALPOLE WATER DEPT,WALPOLE,COM,VOC,XYLENES (TOTAL),2021-11-01 00:00:00,F,ND,WILLIS WTP (MINE BROOK),10354,UG/L,,,0.5,EPA 524.2,0.5,10000.0,UG/L,0.5,0.5000 UG/L +,8.5 MG/L,,Not Recorded,3573366,1236000,PITTSFIELD DPU WATER DEPT,PITTSFIELD,COM,INORG,SODIUM,1995-02-16 00:00:00,F,8.5,COLTSVILLE FLOW CONTROL STATION,001,MG/L,,,,EPA 200.7,1.0,,,14.0,1.0000 MG/L +,1 C UNITS,,Not Recorded,783952,2147000,LANCASTER WATER DEPARTMENT,LANCASTER,COM,SECCON,COLOR,2011-05-17 00:00:00,F,1,WELL #1,01G,C UNITS,,,,SM 2120B,1.0,,,15.0,1.0000 C UNITS +,ND,,0.5000 UG/L,6147754,2097000,FITCHBURG DPW DIVISION OF WATER SUPPLY,FITCHBURG,COM,SOC,METHOMYL,2025-12-18 00:00:00,F,ND,REGIONAL FILTRATION PLANT,MULT 4,UG/L,,,0.5,EPA 531.2,0.0363,,,2.2,0.0363 UG/L +70 UG/L,ND,,Not Recorded,2921066,2147007,"DAMBROSIO EYE CARE, INC.",LANCASTER,NTNC,VOC,"CIS-1,2-DICHLOROETHYLENE",2019-04-25 00:00:00,F,ND,FINISHED WATER: WELL #1,01G,UG/L,,,,EPA 524.2,0.5,70.0,UG/L,0.5,0.5000 UG/L +,4.1 MG/L,,Not Recorded,1321007,2019000,AYER DPW WATER DIVISION,AYER,COM,SECCON,MAGNESIUM,2017-04-25 00:00:00,F,4.1,FINISHED: GROVE POND WTF (BLEND),MULT 4,MG/L,,,,EPA 200.7,0.1,,,100.0,0.1000 MG/L +5 UG/L,ND,,Not Recorded,5649384,4245000,RAYNHAM CENTER WATER DISTRICT,RAYNHAM,COM,VOC,TETRACHLOROETHYLENE,2018-07-17 00:00:00,F,ND,"LAKE NIP WELL #: 2,1A,1B,2A,2B",10011,UG/L,,,,EPA 524.2,0.5,5.0,UG/L,0.5,0.5000 UG/L +20 NG/L,ND,,1.9000 NG/L,5919281,4245002,NORTH RAYNHAM WATER DISTRICT,RAYNHAM,COM,PFAS,PERFLUORODECANOIC ACID - PFDA,2023-01-18 00:00:00,R,ND,WELL 05G RAW,RW-05G,NG/L,,,1.9,EPA 537.1,0.57,20.0,NG/L,2.0,0.5700 NG/L diff --git a/docs/data/EEADP_enforcement.csv b/docs/data/EEADP_enforcement.csv index 692f3e8b..95b61b0f 100644 --- a/docs/data/EEADP_enforcement.csv +++ b/docs/data/EEADP_enforcement.csv @@ -55148,6 +55148,7 @@ Id,Town,Program,EnforcementType,PenaltyAssessed,FacilityId,FacilityName,Enforcem 3997142,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,667071,MASS CONVENTION CENTER AUTHORITY,2026-04-15 3997187,TEMPLETON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,176744,SEAMAN PAPER COMPANY,2026-04-15 3997287,LANCASTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175118,CUMBERLAND FARMS 2102,2026-04-15 +3997359,MONTAGUE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,160956,MONTAGUE MACHINE CO,2026-04-16 3997363,BOURNE,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,0.0,6198,BOURNE WATER DISTRICT,2026-04-13 3997406,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,421335,SHOUKAT & SAEED INC,2026-04-15 3997410,WARE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174757,RACEWAYY,2026-04-15 @@ -55178,76 +55179,5 @@ Id,Town,Program,EnforcementType,PenaltyAssessed,FacilityId,FacilityName,Enforcem 3997515,LAWRENCE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,130932,NEW BALANCE ATHLETIC SHOE INC,2026-04-15 3998156,WAREHAM,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,414814,GULF MART,2026-04-15 3998218,NORTON,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,2262.0,558847,SOUTH SHORE MILLWORK,2026-04-08 -3997359,MONTAGUE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,160956,MONTAGUE MACHINE CO,2026-04-16 -3999059,ATTLEBORO,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,372409,NGM SERVICES INC,2026-04-21 -3999061,DRACUT,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174419,DRACUT AUTO CLINIC CITGO,2026-04-21 -3999067,NORTH ATTLEBOROUGH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,172787,NORTH ATTLEBORO WWTF,2026-04-21 -3999069,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,417548,G&D AUTO CLINIC,2026-04-21 -3999360,LYNN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,269563,PETROIL MARKET,2026-04-21 -3999362,MEDFORD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,317337,SUPER PETROLEUM,2026-04-21 -3999365,CANTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,322591,SHELL 77,2026-04-21 -3999367,WHITMAN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,410497,GULF EXPRESS,2026-04-21 -3999369,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,166405,SANTANDER BANK NA,2026-04-21 -3999372,LEICESTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,228678,PETERSONS OIL SERVICE INC,2026-04-21 -3999374,LEOMINSTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,364737,76 FOOD MART,2026-04-21 -3999378,STURBRIDGE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,556728,STURBRIDGE GAS,2026-04-21 -3999385,FRAMINGHAM,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,161991,MCI FRAMINGHAM,2026-04-21 -3999387,FALL RIVER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,367175,MS GAS SERVICES LLC,2026-04-21 -3999389,STONEHAM,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,431998,AUTO WORKS & FUEL,2026-04-21 -3999391,STURBRIDGE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,324749,EDWARDS GAS,2026-04-21 -3999393,NORFOLK,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,585833,DEPARTMENT OF CORRECTIONS,2026-04-21 -3999395,EDGARTOWN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,509315,NORTH LINE SHELL,2026-04-21 -3999397,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,522595,SUFFOLK COUNTY SHERIFF,2026-04-21 3999453,ANDOVER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673745,HAZARDOUS PRO LLC,2026-04-16 3999456,NEW BEDFORD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673747,I.D.G. ENVIRONMENTAL SERVICES LLC,2026-04-16 -3999177,HAVERHILL,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,340342,BROCO OIL INC,2026-04-24 -3999180,,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,664049,REICHERT & SONS FUEL OIL,2026-04-24 -3999182,CHICOPEE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,393828,CENTRAL OIL,2026-04-24 -3999230,CARVER,WATER SUPPLY/DRINKING WATER,Unilateral Administrative Order,0.0,555957,THE BERRY GUYS,2026-04-24 -4000169,REVERE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,618802,"EZ DISPOSAL SERVICE, INC.",2026-04-29 -4000178,BROCKTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,162945,CROWN UNIFORM AND LINEN SERVICE,2026-04-29 -4000181,FALMOUTH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,163701,SEACREST BEACH HOTEL,2026-04-29 -4000267,AYER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,540078,VULCANFORMS INC,2026-04-29 -4000644,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,130246,APMAR USA INC,2026-04-30 -4000742,WALPOLE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,312906,1A AUTO CLINIC,2026-04-29 -4002334,ACUSHNET,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,6191,ACUSHNET MANUFACTURED HOMES,2026-04-30 -4000843,WEST SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,149149,AGRI MARK INC,2026-05-01 -4001553,CARLISLE,WATER SUPPLY/DRINKING WATER,Unilateral Administrative Order,0.0,333202,GLEASON PUBLIC LIBRARY,2026-05-01 -4001582,,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673605,"C&L AM, LLC",2026-05-06 -4001631,NEWTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673832,MARKET STREET RETAIL SOUTH LLC,2026-05-06 -4001633,FOXBOROUGH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673798,NPP DEVELOPMENT LLC,2026-05-06 -4001636,ATTLEBORO,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673796,SEABRA FOODS,2026-05-06 -4001640,WESTFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,404300,MCNAIRN PACKAGING INC,2026-05-06 -4001656,PEABODY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,131114,ROUSSELOT PEABODY INC,2026-05-06 -4001659,WOBURN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,576415,"TIGHE WAREHOUSING & DISTRIBUTION, INC.",2026-05-06 -4001661,ABINGTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,474997,TROUPE WASTE SERVICES INC,2026-05-06 -4003040,SOUTHWICK,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,633129,WGI 2,2026-05-06 -4003051,HOLYOKE,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,13645.0,172610,HOLYOKE LANDFILL,2026-05-01 -4003376,NORTH ANDOVER,REGULATED ACTIVITY(S),Administrative Consent Order No Penalty,,589569,6K INC,2026-05-05 -4003651,WAKEFIELD,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,23573.0,543136,NATGUN,2026-05-07 -3997412,WILLIAMSTOWN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175343,A&A MART,2026-05-13 -4002146,SCITUATE,WATER SUPPLY/DRINKING WATER,Administrative Consent Order With Penalty,13220.0,7295,SCITUATE WATER DIVISION,2026-05-08 -4003069,LANCASTER,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,0.0,6005,LANCASTER WATER DEPARTMENT,2026-05-11 -4003354,ASHLAND,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,42993.0,130141,NYACOL PRODUCTS INC,2026-05-11 -4003721,EASTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,162978,STONEHILL COLLEGE,2026-05-13 -4003723,FALL RIVER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,668502,ICE CUBE COLD STORAGE,2026-05-13 -4003769,BILLERICA,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673693,BOYD CORPORATION INC,2026-05-13 -4003773,,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,628122,CLEANUP CONTRACTORS LLC,2026-05-13 -4004074,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,148234,MITCHELL MACHINE INC,2026-05-13 -4004078,SOUTHWICK,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673772,MASS USED AUTO PARTS LLC,2026-05-13 -4004156,WESTMINSTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,627107,WALMART REGIONAL WAREHOUSE 10617,2026-05-13 -4004158,SALEM,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,570711,KEOLIS COMMUTER SERVICES,2026-05-13 -4004160,DANVERS,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,576424,SAVERS 1139,2026-05-13 -4004162,WESTBOROUGH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673792,WASTE MANAGEMENT OF MASSACHUSETTS,2026-05-13 -4004565,AMESBURY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,674053,APEX ABATEMENT AND DEMOLITION LCC,2026-05-14 -4004622,WAYLAND,WATER SUPPLY/DRINKING WATER,Unilateral Administrative Order,0.0,6176,WAYLAND WATER DEPARTMENT,2026-05-13 -4004502,WEYMOUTH,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,534035,SOUTHFIELD REDEVELOPEMENT AUTHORITY,2026-05-15 -4005116,UXBRIDGE,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,0.0,6453,GIA RESTAURANT,2026-05-20 -4005172,MANSFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,600490,NEXTPHASE MEDICAL DEVICES MA LLC,2026-05-20 -4005325,QUINCY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,513382,NATIONAL FIRE PROTECTION ASSOCIATION,2026-05-20 -4005327,AMESBURY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,343658,AMESBURY MOBIL,2026-05-20 -4005329,METHUEN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,434094,Z & D AUTO REPAIR,2026-05-20 -4005612,FITCHBURG,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,5986,FITCHBURG DPW DIVISION OF WATER SUPPLY,2026-05-22 -4006230,WEST SPRINGFIELD,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,1000.0,371279,HAMPDEN GAS MART INC,2026-05-21 -4006247,SOUTHWICK,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673784,EASY SOLUTIONS LLC,2026-05-21 -4006252,PITTSFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,466714,BARILE ENVIRONMENTAL INC,2026-05-20 diff --git a/docs/data/EEADP_enforcement_sample.csv b/docs/data/EEADP_enforcement_sample.csv index 2e24eae4..09fc7ad0 100644 --- a/docs/data/EEADP_enforcement_sample.csv +++ b/docs/data/EEADP_enforcement_sample.csv @@ -1,11 +1,11 @@ Id,Town,Program,EnforcementType,PenaltyAssessed,FacilityId,FacilityName,EnforcementDate -2683380,SUTTON,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,257116,DCR PURGATORY CHASM STATE RESERVATION,2014-09-22 -972552,WORCESTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,204918,LEONARD J LORUSSO,1996-04-18 -1231355,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174070,COLT PRESS INC,1999-11-04 -1970973,ADAMS,REGULATED ACTIVITY(S),Unilateral Administrative Order,,161215,HOLLAND COMPANY INC,2007-03-14 -2990263,OXFORD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,384909,APG NEW ENGLAND OXFORD,2018-08-02 -3228044,HOPKINTON,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,0.0,6350,NEW ENGLAND LABORERS TRAINING ACADEMY,2021-01-26 -1688209,LEOMINSTER,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,13787.0,395468,BLAKE PROPERTY,2005-03-01 -3157534,LAWRENCE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174443,SANCHEZ SUNOCO,2021-01-22 -1006236,WESTWOOD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,282537,DADE BEHRING INC,1996-08-16 -3088064,LUNENBURG,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175004,ELECTRIC AVE SERVICE STATION,2019-11-21 +3027558,LINCOLN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,433505,LINCOLN GAS AND AUTO SERVICE,2019-01-23 00:00:00 +2331518,WESTFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,160854,MA AIR NATIONAL GUARD,2010-12-23 00:00:00 +1230299,TAUNTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,130283,SILVER CITY ALUMINUM,2000-02-28 00:00:00 +2484011,BEVERLY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,507645,MAESTRANSI BROTHERS,2012-06-27 00:00:00 +1999718,MIDDLEBOROUGH,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,307859,NEMASKET HEALTH CARE CENTER,2007-06-20 00:00:00 +2110382,RUTLAND,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,172898,RUTLAND LANDFILL,2008-09-17 00:00:00 +3193614,BELMONT,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,312618,BELMONT DPW HIGHWAY GARAGE,2021-07-21 00:00:00 +2288274,SHREWSBURY,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,8000.0,156483,INDEPENDENT TRUCK SERVICE INC,2002-05-09 00:00:00 +2069670,HOLBROOK,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,7219,RANDOLPH/HOLBROOK JOINT WATER BOARD,2008-02-12 00:00:00 +1230801,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,148271,WALTER WHITTUM INC,1999-11-04 00:00:00 diff --git a/docs/data/EEADP_facility.csv b/docs/data/EEADP_facility.csv index bb21737a..474d252c 100644 --- a/docs/data/EEADP_facility.csv +++ b/docs/data/EEADP_facility.csv @@ -722,7 +722,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 7056,544 EAST ST,MOUNT WASHINGTON,PUBLIC WATER SUPPLY SYSTEM,YMCA CAMP HI ROCK,WATER SUPPLY/DRINKING WATER,1195001,True 7057,1500 EAST ST,MOUNT WASHINGTON,PUBLIC WATER SUPPLY SYSTEM,DCR MT WASHINGTON STATE FOREST,WATER SUPPLY/DRINKING WATER,1195004,True 7062,"94 STATE ROAD, ROUTE 7",NEW ASHFORD,PUBLIC WATER SUPPLY SYSTEM,SPRINGS MOTEL,WATER SUPPLY/DRINKING WATER,1200005,True -7064,259 ROUTE 7,NEW ASHFORD,PUBLIC WATER SUPPLY SYSTEM,NEW ASHFORD MOTOR INN,WATER SUPPLY/DRINKING WATER,1200007,True 7069,RTE 57 AND 183,NEW MARLBOROUGH,PUBLIC WATER SUPPLY SYSTEM,DCR SANDISFIELD STATE FOREST,WATER SUPPLY/DRINKING WATER,1203007,True 7070,44 HARTSVILLE MILL RIVER ROAD,NEW MARLBOROUGH,PUBLIC WATER SUPPLY SYSTEM,NEW MARLBOROUGH CENTRAL SCHOOL,WATER SUPPLY/DRINKING WATER,1203011,True 7071,201 WENDELL RD,NEW SALEM,PUBLIC WATER SUPPLY SYSTEM,SWIFT RIVER ELEMENTARY SCHOOL,WATER SUPPLY/DRINKING WATER,1204001,True @@ -762,7 +761,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 7153,19 STAGE ROAD,WESTHAMPTON,PUBLIC WATER SUPPLY SYSTEM,HAMPSHIRE REGIONAL HIGH SCHOOL,WATER SUPPLY/DRINKING WATER,1331003,True 7154,139 SOUTH RD,WESTHAMPTON,PUBLIC WATER SUPPLY SYSTEM,NORTHAMPTON / SPRINGFIELD KOA HOLIDAY,WATER SUPPLY/DRINKING WATER,1331004,True 7156,1128 STATE RD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,WESTPORT COUNTRY DAY SCHOOL,WATER SUPPLY/DRINKING WATER,4334073,True -7160,R1146 COLD SPRING ROAD,WILLIAMSTOWN,PUBLIC WATER SUPPLY SYSTEM,BERKSHIRE HILLS MOTEL,WATER SUPPLY/DRINKING WATER,1341007,True 7162,137 NEW ASHFORD ROAD,WILLIAMSTOWN,PUBLIC WATER SUPPLY SYSTEM,WAUBEEKA GOLF LINKS LLC,WATER SUPPLY/DRINKING WATER,1341009,True 7163,1781 COLD SPRING ROAD,WILLIAMSTOWN,PUBLIC WATER SUPPLY SYSTEM,MT GREYLOCK REGIONAL SCHOOL,WATER SUPPLY/DRINKING WATER,1341010,True 7164,811 COLD SPRING ROAD,WILLIAMSTOWN,PUBLIC WATER SUPPLY SYSTEM,1896 HOUSE PONDSIDE,WATER SUPPLY/DRINKING WATER,1341011,True @@ -792,7 +790,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 7208,DOANE RD,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,CCNS DOANE ROCK PICNIC AREA,WATER SUPPLY/DRINKING WATER,4086041,True 7209,60 CODMAN HILL RD,BOXBOROUGH,PUBLIC WATER SUPPLY SYSTEM,60 AND 70 CODMAN HILL RD,WATER SUPPLY/DRINKING WATER,2037021,True 7210,133 RAYMOND RD,PLYMOUTH,PUBLIC WATER SUPPLY SYSTEM,AQUARION WATER COMPANY PONDS OF PLYMOUTH,WATER SUPPLY/DRINKING WATER,4239045,True -7212,81 MILLSTONE RD,TYNGSBOROUGH,PUBLIC WATER SUPPLY SYSTEM,MIT MILLSTONE LABORATORY,WATER SUPPLY/DRINKING WATER,3301034,True +7212,81 MILLSTONE RD,,PUBLIC WATER SUPPLY SYSTEM,MIT MILLSTONE LABORATORY,WATER SUPPLY/DRINKING WATER,3301034,True 7213,59 SOUTH MAIN ST,BERKLEY,PUBLIC WATER SUPPLY SYSTEM,BERKLEY COMMUNITY SCHOOL,WATER SUPPLY/DRINKING WATER,4027003,True 7217,100 STONE MANOR DRIVE,NEW MARLBOROUGH,PUBLIC WATER SUPPLY SYSTEM,CMC BERKSHIRE,WATER SUPPLY/DRINKING WATER,1203012,True 7219,50 N. FRANKLIN ST,HOLBROOK,PUBLIC WATER SUPPLY SYSTEM,RANDOLPH/HOLBROOK JOINT WATER BOARD,WATER SUPPLY/DRINKING WATER,4244001,True @@ -1053,7 +1051,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 130327,5215 EAST HOSPITAL ROAD,BOURNE,DEP REGULATED FACILITY,US COAST GUARD BASE CAPE COD,REGULATED ACTIVITY(S),546010204,True 130328,2001 WASHINGTON ST,BRAINTREE,DEP REGULATED FACILITY,MA RESPIRATORY HOSPITAL,REGULATED ACTIVITY(S),,False 130330,10 PLAIN ST,BRAINTREE,DEP REGULATED FACILITY,ARMSTRONG WORLD IND,REGULATED ACTIVITY(S),,False -130331,112 RAILROAD ST,REVERE,DEP REGULATED FACILITY,RAILROAD STREET INDUSTRIES INC,REGULATED ACTIVITY(S),042093166,True +130331,112 RAILROAD ST,REVERE,DEP REGULATED FACILITY,DURANT PERFORMANCE COATINGS INC,REGULATED ACTIVITY(S),042093166,True 130332,385 QUINCY AVE,BRAINTREE,DEP REGULATED FACILITY,CITGO PETROLEUM CORPORATION,REGULATED ACTIVITY(S),731173881,True 130334,205 WOOD RD,BRAINTREE,DEP REGULATED FACILITY,WOLLASTON ALLOYS INC,REGULATED ACTIVITY(S),510262050,True 130336,102 SHAW ST,BRAINTREE,DEP REGULATED FACILITY,CW KNIGHT CORP,REGULATED ACTIVITY(S),042090087,True @@ -1253,7 +1251,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 130678,301 CHESTNUT ST,EAST LONGMEADOW,DEP REGULATED FACILITY,BLACK AND DECKER US INC,REGULATED ACTIVITY(S),470684112,True 130679,35 INDUSTRIAL DR,EAST LONGMEADOW,DEP REGULATED FACILITY,SMURFIT STONE CONTAINER CORP,REGULATED ACTIVITY(S),130679,False 130682,40 FEDERAL ST,LYNN,DEP REGULATED FACILITY,GENERAL ELECTRIC CO,REGULATED ACTIVITY(S),140689340,True -130683,500 LYNNFIELD ST,LYNN,DEP REGULATED FACILITY,2LIFE COMMUNITIES,REGULATED ACTIVITY(S),,True +130683,500 LYNNFIELD ST,LYNN,DEP REGULATED FACILITY,SOLIMINE CHARITABLE CORP,REGULATED ACTIVITY(S),043399616,True 130685,626 LYNNWAY ST,LYNN,DEP REGULATED FACILITY,WEST LYNN CREAMERY,REGULATED ACTIVITY(S),042215921,False 130686,37-39 BUBIER ST,LYNN,DEP REGULATED FACILITY,REFINITY CORPORATION,REGULATED ACTIVITY(S),041271540,False 130687,500 BOSTON ST,LYNN,DEP REGULATED FACILITY,CARR LEATHER,REGULATED ACTIVITY(S),,False @@ -1276,7 +1274,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 130718,73 OLYMPIA AVE,WOBURN,DEP REGULATED FACILITY,MOTOR ELECTRO & CONTROL,REGULATED ACTIVITY(S),130718,False 130720,211 NEW BOSTON ST,WOBURN,DEP REGULATED FACILITY,WOBURN STEEL DRUM,REGULATED ACTIVITY(S),042556854,True 130724,64 INDUSTRIAL PKWY,WOBURN,DEP REGULATED FACILITY,MADICO INC,REGULATED ACTIVITY(S),042807288,True -130730,70 MECHANIC ST,FOXBOROUGH,DEP REGULATED FACILITY,"SCHNEIDER ELECTRIC SYSTEMS USA, INC.",REGULATED ACTIVITY(S),041339430,True +130730,38 NEPONSET AVE,FOXBOROUGH,DEP REGULATED FACILITY,SCHNEIDER ELECTRIC,REGULATED ACTIVITY(S),041339430,True 130733,147 ESSEX AVE,GLOUCESTER,DEP REGULATED FACILITY,LEPAGES INC,REGULATED ACTIVITY(S),215089466,False 130734,298 WASHINGTON ST,GLOUCESTER,DEP REGULATED FACILITY,ADDISON GILBERT HOSPITAL,REGULATED ACTIVITY(S),042121317,True 130735,164 HIGH ST,GREENFIELD,DEP REGULATED FACILITY,BAYSTATE FRANKLIN MEDICAL CENTER,REGULATED ACTIVITY(S),042103575,True @@ -1430,7 +1428,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 131007,2 INDUSTRIAL AVE,LOWELL,DEP REGULATED FACILITY,TEXTRON SYSTEMS CORPORATION,REGULATED ACTIVITY(S),,False 131009,121 HALE ST,LOWELL,DEP REGULATED FACILITY,MERRIMAC MAGNETICS C,REGULATED ACTIVITY(S),,False 131010,164 MEADOWCROFT ST,LOWELL,DEP REGULATED FACILITY,GRAPHIC PACKAGING INTERNATIONAL LLC,REGULATED ACTIVITY(S),840772929,False -131011,1400 MIDDLESEX ST,LOWELL,DEP REGULATED FACILITY,1400 MIDDLESEX,REGULATED ACTIVITY(S),042918645,True +131011,1400 MIDDLESEX ST,LOWELL,DEP REGULATED FACILITY,IDEAL TAPE COMPANY,REGULATED ACTIVITY(S),042918645,True 131012,176 WALKER ST,LOWELL,DEP REGULATED FACILITY,ELECTRO CIRCUITS INC,REGULATED ACTIVITY(S),,False 131013,11 INDUSTRIAL AVE,LOWELL,DEP REGULATED FACILITY,WANG LABORATORIES IN,REGULATED ACTIVITY(S),888888888,False 131015,100 WHIPPLE ST,LOWELL,DEP REGULATED FACILITY,MAJILITE MANUFACTURING INC,REGULATED ACTIVITY(S),390732985,False @@ -1698,7 +1696,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 131474,400 CHAPMAN ST,GREENFIELD,DEP REGULATED FACILITY,AR SANDRI INC BULK FACILITY,REGULATED ACTIVITY(S),042037552,True 131476,182 LONG POND RD,HARWICH,DEP REGULATED FACILITY,CAPE COD AUTO MALL,REGULATED ACTIVITY(S),042610297,False 131477,24 GREAT WESTERN RD,HARWICH,DEP REGULATED FACILITY,ROBERT B OUR COMPANY INC,REGULATED ACTIVITY(S),042319318,True -131481,216 MOUNT HERMON STATION RD,NORTHFIELD,DEP REGULATED FACILITY,NORTHEAST PAVING NORTHFIELD PLANT,REGULATED ACTIVITY(S),831881577,True +131481,216 MOUNT HERMON STATION RD,NORTHFIELD,DEP REGULATED FACILITY,JOHN S LANE AND SON INC,REGULATED ACTIVITY(S),831881577,True 131486,852 MILLVILLE RD,UXBRIDGE,DEP REGULATED FACILITY,UNIVERSAL AUTO SALVAGE,REGULATED ACTIVITY(S),042499651,True 131487,6 WHALERS WAY,FAIRHAVEN,DEP REGULATED FACILITY,ALDEN BUICK PONTIAC GMC TRUCK,REGULATED ACTIVITY(S),,True 131489,10 LEWISTON ST,FALL RIVER,DEP REGULATED FACILITY,FALL RIVER PUBLIC WORKS GARAGE,REGULATED ACTIVITY(S),,True @@ -2490,7 +2488,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 133644,1200 WORCESTER RD,FRAMINGHAM,DEP REGULATED FACILITY,MCGOVERN FORD OF FRAMINGHAM,REGULATED ACTIVITY(S),042477543,True 133651,232R HOLLIS ST,FRAMINGHAM,DEP REGULATED FACILITY,HOLLIS AUTO BODY INC,REGULATED ACTIVITY(S),888888888,False 133652,1199 WORCESTER RD,FRAMINGHAM,DEP REGULATED FACILITY,NEW ENGLAND AUTOMAX,REGULATED ACTIVITY(S),043376989,True -133658,1310 SHERIDAN ST,CHICOPEE,DEP REGULATED FACILITY,ROTATING MACHINERY SERVICES TURBOCARE,REGULATED ACTIVITY(S),593744121,True +133658,1310 SHERIDAN ST,CHICOPEE,DEP REGULATED FACILITY,ETHOSENERGY TC INC,REGULATED ACTIVITY(S),593744121,True 133659,105 EXCHANGE ST,CHICOPEE,DEP REGULATED FACILITY,BERNARDINOS BAKERY INC,REGULATED ACTIVITY(S),042774661,True 133663,19 SITARZ AVE,CHICOPEE,DEP REGULATED FACILITY,CHICOPEE PROVISION CO INC,REGULATED ACTIVITY(S),041174450,True 133668,760 FRONT ST,CHICOPEE,DEP REGULATED FACILITY,B AND L AUTOMOTIVE INC,REGULATED ACTIVITY(S),,True @@ -2513,7 +2511,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 133732,62 HOPKINTON RD,WESTBOROUGH,DEP REGULATED FACILITY,NOREMAC MANUFACTURING CORPORATION THE,REGULATED ACTIVITY(S),042394768,True 133733,25 BRIDLE LN,WESTBOROUGH,DEP REGULATED FACILITY,EMSEAL JOINT SYSTEMS LTD,REGULATED ACTIVITY(S),262444754,True 133736,75 STURGIS WAY,DEDHAM,DEP REGULATED FACILITY,HOBART CORP,REGULATED ACTIVITY(S),,True -133741,230 GREAT WESTERN RD,DENNIS,DEP REGULATED FACILITY,"AMRIZE NORTHEAST, INC.",REGULATED ACTIVITY(S),042079391,True +133741,230 GREAT WESTERN RD,DENNIS,DEP REGULATED FACILITY,AMRIZE BUILDING ENVELOPE LLC,REGULATED ACTIVITY(S),042079391,True 133742,490 SOMERSET AVE,DIGHTON,DEP REGULATED FACILITY,TAUNTON STOVE CO INC,REGULATED ACTIVITY(S),042110185,True 133744,DOVER,DOVER,DEP REGULATED FACILITY,COLONIAL WATER COMPANY,REGULATED ACTIVITY(S),,True 133745,1 MILL ST,DRACUT,DEP REGULATED FACILITY,MILL ELECTRONICS INC,REGULATED ACTIVITY(S),888888888,False @@ -2600,7 +2598,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 134094,47 SCHOOL ST,WESTFIELD,DEP REGULATED FACILITY,CITY CLEANERS OF WESTFIELD INC,REGULATED ACTIVITY(S),042678630,True 134103,68 NORTH ELM ST,WESTFIELD,DEP REGULATED FACILITY,WESTFIELD ELECTROPLATING CO,REGULATED ACTIVITY(S),042254782,True 134104,69 NECK RD,WESTFIELD,DEP REGULATED FACILITY,HALLAMORE PIPE VENTURE CORP,REGULATED ACTIVITY(S),720296500,True -134105,135 APREMONT WAY,WESTFIELD,DEP REGULATED FACILITY,WESTFIELD GRINDING WHEEL CO,REGULATED ACTIVITY(S),,True +134105,135 APREMONT WAY,WESTFIELD,DEP REGULATED FACILITY,WESTFIELD GRINDING WHEEL CO,REGULATED ACTIVITY(S),,False 134109,979 SOUTHAMPTON RD,WESTFIELD,DEP REGULATED FACILITY,PRO AUTOMOTIVE REPAIR INC,REGULATED ACTIVITY(S),550912161,True 134110,87 INDUSTRIAL AVE,LOWELL,DEP REGULATED FACILITY,TRANSGAS INC,REGULATED ACTIVITY(S),042656895,True 134123,1077 CENTER ST,LUDLOW,DEP REGULATED FACILITY,LUDLOW AUTO SALVAGE,REGULATED ACTIVITY(S),043263838,False @@ -3391,7 +3389,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 156743,30 PINE ST,NEW BEDFORD,DEP REGULATED FACILITY,GLOBAL PETROLEUM CORP,REGULATED ACTIVITY(S),,False 156751,655 MOUNT AUBURN ST,WATERTOWN,DEP REGULATED FACILITY,PAULS SERVICE CENTER,REGULATED ACTIVITY(S),615084000,True 156772,111 DOWNEY ST,NORWOOD,DEP REGULATED FACILITY,EIC LABORATORIES INC,REGULATED ACTIVITY(S),,True -156775,200 MAIN ST,HAVERHILL,DEP REGULATED FACILITY,FORMER IMPERIAL CLEANERS OF MAIN ST,REGULATED ACTIVITY(S),043012622,False +156775,200 MAIN ST,HAVERHILL,DEP REGULATED FACILITY,FORMER IMPERIAL CLEANERS OF MAIN ST,REGULATED ACTIVITY(S),043012622,True 156786,9-11 MAIN ST,SAUGUS,DEP REGULATED FACILITY,MONUMENT SQUARE AUTO REPAIR,REGULATED ACTIVITY(S),888888888,True 156790,663 SAW MILL BROOK PKWY,NEWTON,DEP REGULATED FACILITY,OAK HILL PARK CLEANERS,REGULATED ACTIVITY(S),043131845,True 156792,TREMONT ST,CARVER,DEP REGULATED FACILITY,LAKEVILLE REDI MIX INC,REGULATED ACTIVITY(S),042471035,False @@ -3858,7 +3856,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 159041,666 SOUTHERN ARTERY,QUINCY,DEP REGULATED FACILITY,AFFORDABLE MARINE & AUTO SERVICE,REGULATED ACTIVITY(S),202668192,True 159044,626 GREAT RD,STOW,DEP REGULATED FACILITY,STOW BROOK GULF,REGULATED ACTIVITY(S),,True 159048,9 MUDGE WAY,BEDFORD,DEP REGULATED FACILITY,BEDFORD SENIOR HIGH SCHOOL,REGULATED ACTIVITY(S),35507,True -159049,295 WEST FIRST ST,BOSTON,DEP REGULATED FACILITY,JSIP WEST FIRST STREET LLC,REGULATED ACTIVITY(S),,True +159049,295 WEST FIRST ST,BOSTON,DEP REGULATED FACILITY,COLONIAL EXPRESS INC,REGULATED ACTIVITY(S),,True 159050,29 MYSTIC AVE,MEDFORD,DEP REGULATED FACILITY,MCGOVERN CJDR OF BOSTON,REGULATED ACTIVITY(S),,True 159056,250 FRESH POND PKWY,CAMBRIDGE,DEP REGULATED FACILITY,CAMBRIDGE WATER DEPARTMENT,REGULATED ACTIVITY(S),046001383,True 159064,479 WASHINGTON ST,QUINCY,DEP REGULATED FACILITY,PRIME HYUNDAI SOUTH,REGULATED ACTIVITY(S),453995063,False @@ -3962,7 +3960,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 159573,79 POND ST,NORFOLK,DEP REGULATED FACILITY,ROCKYS AUTO BODY,REGULATED ACTIVITY(S),453928593,True 159577,94 WHARF ST,WEYMOUTH,DEP REGULATED FACILITY,WHARF STREET LANDFILL,REGULATED ACTIVITY(S),,True 159579,1454 SOUTH STATE ST,NORTH ADAMS,DEP REGULATED FACILITY,TOG MACHINING CO INC,REGULATED ACTIVITY(S),042809184,True -159580,47 LAGRANGE ST,WORCESTER,DEP REGULATED FACILITY,WORCESTER LAGRANGE LLC,REGULATED ACTIVITY(S),,True +159580,47 LAGRANGE ST,WORCESTER,DEP REGULATED FACILITY,SEM TEC INC,REGULATED ACTIVITY(S),042263850,True 159587,267 MAIN ST,BROCKTON,DEP REGULATED FACILITY,STEPHANIE CLEANERS,REGULATED ACTIVITY(S),043414900,False 159588,COMMERCIAL ST N END,BOSTON,DEP REGULATED FACILITY,STERITI STEPHEN J SKATING RINK,REGULATED ACTIVITY(S),,True 159590,COUNTRY RD TOWN BARN,OAK BLUFFS,DEP REGULATED FACILITY,OAK BLUFFS TOWN OF,REGULATED ACTIVITY(S),,True @@ -4946,7 +4944,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 163091,119 COVE ST,FALL RIVER,DEP REGULATED FACILITY,FR FLORIST SUPPLY C,REGULATED ACTIVITY(S),54383,True 163092,104 ANAWAN ST,FALL RIVER,DEP REGULATED FACILITY,SHANE LANDING LLC,REGULATED ACTIVITY(S),046334553,True 163095,207 POCASSET ST,FALL RIVER,DEP REGULATED FACILITY,HERALD NEWS,REGULATED ACTIVITY(S),841711503,True -163097,245 TRIPP ST,FALL RIVER,DEP REGULATED FACILITY,PREFERRED CONCRETE CORP,REGULATED ACTIVITY(S),043466455,True +163097,245 TRIPP ST,FALL RIVER,DEP REGULATED FACILITY,PREFERRED CONCRETE CORP,REGULATED ACTIVITY(S),273869726,True 163098,69 ALDEN ST,FALL RIVER,DEP REGULATED FACILITY,WAMPANOAG REALTY,REGULATED ACTIVITY(S),54397,True 163101,1550 PHINNEYS LN,BARNSTABLE,DEP REGULATED FACILITY,CAPE COD AGGREGATES CORP,REGULATED ACTIVITY(S),042739365,True 163102,396 GIFFORD ST,FALMOUTH,DEP REGULATED FACILITY,LAWRENCE LYNCH HMA CORP,REGULATED ACTIVITY(S),275299920,True @@ -6964,7 +6962,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 172837,HOBOMOCK ST,PEMBROKE,DEP REGULATED FACILITY,PEMBROKE LANDFILL & TRANSFER STATION,REGULATED ACTIVITY(S),,True 172843,NEW SALEM RD,PETERSHAM,DEP REGULATED FACILITY,PETERSHAM TRANSFER STATION AND LANDFILL,REGULATED ACTIVITY(S),,True 172844,SHAW RD,PETERSHAM,DEP REGULATED FACILITY,PETERSHAM DEMO DUMP,REGULATED ACTIVITY(S),,True -172845,60 TEMPLETON RD,PHILLIPSTON,DEP REGULATED FACILITY,PHILLIPSTON LANDFILL,REGULATED ACTIVITY(S),,True 172846,55 DOWNING PKWY,PITTSFIELD,DEP REGULATED FACILITY,PITTSFIELD MUNICIPAL ASH LANDFILL,REGULATED ACTIVITY(S),046001408,True 172849,1803 EAST ST,PITTSFIELD,DEP REGULATED FACILITY,PITTSFIELD SOUTH LANDFILL,REGULATED ACTIVITY(S),,True 172850,RIVER/ WEST HILL RD,PLAINFIELD,DEP REGULATED FACILITY,PLAINFIELD LANDFILL,REGULATED ACTIVITY(S),,True @@ -7082,7 +7079,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 173101,LUCE RD,WILLIAMSTOWN,DEP REGULATED FACILITY,LUCE ROAD DUMP,REGULATED ACTIVITY(S),,True 173103,STETSON RD,WILLIAMSTOWN,DEP REGULATED FACILITY,COLE FIELD LANDFILL,REGULATED ACTIVITY(S),,True 173105,923 MAIN ST,WILMINGTON,DEP REGULATED FACILITY,MAPLE MEADOW LANDFILL PROJECT,REGULATED ACTIVITY(S),,True -173111,RIVER ST,WINCHENDON,DEP REGULATED FACILITY,CJ MABARDY DEMOLITION LANDFILL,REGULATED ACTIVITY(S),,True +173111,637 RIVER ST,WINCHENDON,DEP REGULATED FACILITY,CJ MABARDY DEMOLITION LANDFILL,REGULATED ACTIVITY(S),,True 173112,15 MCKAY AVE,WINCHESTER,DEP REGULATED FACILITY,WINCHESTER LANDFILL AND TRANSFER STATION,REGULATED ACTIVITY(S),,True 173114,BERKSHIRE TRL,WINDSOR,DEP REGULATED FACILITY,WINDSOR LANDFILL,REGULATED ACTIVITY(S),,True 173116,ARGYLE ST,WINTHROP,DEP REGULATED FACILITY,WINTHROP LANDFILL,REGULATED ACTIVITY(S),,True @@ -7972,7 +7969,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 176808,535 PLAIN ST,MARSHFIELD,DEP REGULATED FACILITY,VERC CAR WASH,REGULATED ACTIVITY(S),19183,False 176809,4 SOUTHBRIDGE ST,WORCESTER,DEP REGULATED FACILITY,CHARTER ENVIRONMENTAL,REGULATED ACTIVITY(S),19481,True 176872,35 EXTENSION ST,ATTLEBORO,DEP REGULATED FACILITY,FOXX RIVER MOLDING CO INC,REGULATED ACTIVITY(S),,False -176873,16 GATES ST,FRAMINGHAM,DEP REGULATED FACILITY,FRAMINGHAM COUNTRY CLUB,REGULATED ACTIVITY(S),,True +176873,65 GATES ST,FRAMINGHAM,DEP REGULATED FACILITY,FRAMINGHAM COUNTRY CLUB,REGULATED ACTIVITY(S),,True 176879,5 COOLIDGE ST,HUDSON,DEP REGULATED FACILITY,CASACELI REALTY CORPORATION,REGULATED ACTIVITY(S),046457206,False 176925,1 WALLACE RD,FITCHBURG,DEP REGULATED FACILITY,JC INDEPENDENT CLEANERS INC,REGULATED ACTIVITY(S),042326496,True 176950,91 WESTLAND AVE,BOSTON,DEP REGULATED FACILITY,FENWAY PARKSIDE LIMITED PARTNERSHIP,REGULATED ACTIVITY(S),203144145,True @@ -8104,7 +8101,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 178596,6 NICHOLS ST,SALEM,DEP REGULATED FACILITY,NEW ENGLAND CHROMACHEM INC,REGULATED ACTIVITY(S),042832313,True 178604,STROUT AVE,READING,DEP REGULATED FACILITY,LOUANIS TREATMENT PLANT,REGULATED ACTIVITY(S),046-001-2,True 178606,60 ELM HILL AVE,LEOMINSTER,DEP REGULATED FACILITY,AMERICAN ENVIRONMENTAL LABS INCORPORATED,REGULATED ACTIVITY(S),178605,True -178610,270 LITTLETON RD,WESTFORD,DEP REGULATED FACILITY,WASTE WATER ENVIRONMENTAL MANAGEMENT INC,REGULATED ACTIVITY(S),042824890,False +178610,270 LITTLETON RD,WESTFORD,DEP REGULATED FACILITY,WASTE WATER ENVIRONMENTAL MANAGEMENT INC,REGULATED ACTIVITY(S),042824890,True 178614,400 D ST,BOSTON,DEP REGULATED FACILITY,MA DEPARTMENT OF TRANSPORTATION,REGULATED ACTIVITY(S),888888888,True 178618,1515 GRANVILLE RD,WESTFIELD,DEP REGULATED FACILITY,SPRINGFIELD WATER AND SEWER COMMISSION,REGULATED ACTIVITY(S),043321585,True 178622,181 CEDAR HILL ST,MARLBOROUGH,DEP REGULATED FACILITY,REVET ENVIRONMENTAL & ANALYTICAL LAB INC,REGULATED ACTIVITY(S),,False @@ -8305,7 +8302,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 186775,110 SOUTH HILL ST,,DEP REGULATED FACILITY,ENVIRONMENTAL HEALTH LABORATORIES,REGULATED ACTIVITY(S),,True 186784,190 TAFTS AVE,WINTHROP,DEP REGULATED FACILITY,MWRA CENTRAL LABORATORY,REGULATED ACTIVITY(S),E04285007,True 186825,951 BROADWAY,FALL RIVER,DEP REGULATED FACILITY,GRANITE REALTY CORP,REGULATED ACTIVITY(S),043099125,True -186887,20 HARVARD RD,LITTLETON,DEP REGULATED FACILITY,PATRIOT BEVERAGES LLC,REGULATED ACTIVITY(S),814408131,True +186887,20 HARVARD RD,LITTLETON,DEP REGULATED FACILITY,PATRIOT BEVERAGES LLC,REGULATED ACTIVITY(S),001247756,True 186904,MACARTHUR DR,NEW BEDFORD,DEP REGULATED FACILITY,COMMONWEALTH ELECTRIC COMPANY,REGULATED ACTIVITY(S),,True 186917,13 STERLING RD,BILLERICA,DEP REGULATED FACILITY,TRANS MATE LLC,REGULATED ACTIVITY(S),814186562,True 186939,164 SHREWSBURY ST,WEST BOYLSTON,DEP REGULATED FACILITY,NOCO DISTRIBUTION LLC,REGULATED ACTIVITY(S),001105414,True @@ -8379,7 +8376,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 187914,719 WASHINGTON ST,EASTON,PUBLIC WATER SUPPLY SYSTEM,SIMPSON SPRING CO. (SOURCE),WATER SUPPLY/DRINKING WATER,4088004,True 187917,141 GREAT NECK ROAD S,MASHPEE,PUBLIC WATER SUPPLY SYSTEM,SEA MIST RESORT,WATER SUPPLY/DRINKING WATER,4172043,True 187918,GRISTMILL WAY,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,WELLFLEET MUNICIPAL WATER SYSTEM,WATER SUPPLY/DRINKING WATER,4318094,True -187920,99 MILLSTONE RD,TYNGSBOROUGH,PUBLIC WATER SUPPLY SYSTEM,MIT HAYSTACK OBSERVATORY,WATER SUPPLY/DRINKING WATER,3301023,True +187920,99 MILLSTONE RD,,PUBLIC WATER SUPPLY SYSTEM,MIT HAYSTACK OBSERVATORY,WATER SUPPLY/DRINKING WATER,3301023,True 187929,286 MAIN ST,PLYMPTON,PUBLIC WATER SUPPLY SYSTEM,PLYMPTON PLAZA,WATER SUPPLY/DRINKING WATER,4240003,True 187930,180 OLD KINGS HWY,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,DCR WELLFLEET HOLLOW CAMPGROUND,WATER SUPPLY/DRINKING WATER,4318048,True 187931,OCEAN VW DR AND CABLE RD,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,CCNS NAUSET LIGHT BEACH,WATER SUPPLY/DRINKING WATER,4318088,True @@ -9145,7 +9142,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 215876,15 HAMPDEN DR,EASTON,DEP REGULATED FACILITY,LION LABELS INC,REGULATED ACTIVITY(S),042395422,True 215877,19 INDUSTRIAL WAY,SEEKONK,DEP REGULATED FACILITY,AFRICO TRUCKING,REGULATED ACTIVITY(S),,True 215889,28 BOWDITCH DR,SHREWSBURY,DEP REGULATED FACILITY,TABLE TALK PIES LLC,REGULATED ACTIVITY(S),043173280,True -215892,373 PLANTATION ST,WORCESTER,DEP REGULATED FACILITY,UMASS MED SCHOOL BIOTECH II,REGULATED ACTIVITY(S),043167352,False +215892,373 PLANTATION ST,WORCESTER,DEP REGULATED FACILITY,UMASS MED SCHOOL BIOTECH II,REGULATED ACTIVITY(S),043167352,True 215893,401 PRINCETON RD,FITCHBURG,DEP REGULATED FACILITY,FITCHBURG WASTEWATER WEST PLT,REGULATED ACTIVITY(S),046001388,True 215894,8 MILL ST,DUDLEY,DEP REGULATED FACILITY,GUILFORD OF MAINE DECORATIVE FABRICS,REGULATED ACTIVITY(S),582269838,True 215898,125 NORTH DR,WESTBOROUGH,DEP REGULATED FACILITY,KOPIN CORP,REGULATED ACTIVITY(S),042833935,True @@ -12778,7 +12775,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 289979,72 MEGANSETT RD,BOURNE,DEP REGULATED FACILITY,WARE ANN,REGULATED ACTIVITY(S),,True 289994,CHURCH ST,BERNARDSTON,DEP REGULATED FACILITY,SUGARBUSH AND PRATT WELLS,REGULATED ACTIVITY(S),,True 289996,50 INDEPENDENCE DR,AYER,DEP REGULATED FACILITY,PERFORMANCE CORRUGATED,REGULATED ACTIVITY(S),,False -290001,33 COLUMBIA ST,ADAMS,RELEASE,MASS ELECTRIC CO SUBSTATION,AIR AND WASTE,,True +290001,33 COLUMBIA ST,ADAMS,RELEASE,MASS ELECTRIC CO SUBSTATION,WASTE SITE CLEANUP,,True 290003,348 DEPOT ST,EASTON,DEP REGULATED FACILITY,SZUMYLO ALEX & BARBARA,REGULATED ACTIVITY(S),,True 290011,HIDRETH HOUSE,HARVARD,DEP REGULATED FACILITY,HARVARD PUBLIC WATER SUPPLY WELL,REGULATED ACTIVITY(S),,True 290020,490 WEST MAIN ST,AVON,DEP REGULATED FACILITY,CADLE CO OF CONNECTICUT INC THE,REGULATED ACTIVITY(S),,True @@ -13316,7 +13313,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 292489,ROCK HARBOR RD,ORLEANS,DEP REGULATED FACILITY,ROCK HARBOR TOWN LANDING,REGULATED ACTIVITY(S),,True 292491,613 PLEASANT ST,NEW BEDFORD,DEP REGULATED FACILITY,NEW BEDFORD FREE PUBLIC LIBRARY,REGULATED ACTIVITY(S),,False 292493,21 ABBEY LN,EAST BRIDGEWATER,DEP REGULATED FACILITY,YARO BOB MAYER,REGULATED ACTIVITY(S),,True -292495,126 DUCHAINE BLVD,NEW BEDFORD,DEP REGULATED FACILITY,PROTECTIVE LINING INC,REGULATED ACTIVITY(S),,True +292495,241 DUCHAINE BLVD,NEW BEDFORD,DEP REGULATED FACILITY,NEW ENGLAND PLASTICS,REGULATED ACTIVITY(S),,True 292502,108 SOUTH LAKE AVE,OTIS,DEP REGULATED FACILITY,DURFEE THOMAS & JANICE,REGULATED ACTIVITY(S),,True 292504,11 VETERANS DR,CHICOPEE,DEP REGULATED FACILITY,ERWIN JUNKER MACHINE INC,REGULATED ACTIVITY(S),,False 292515,EAST MAIN ST,HUNTINGTON,DEP REGULATED FACILITY,MA HIGHWAY DEPARTMENT,REGULATED ACTIVITY(S),,True @@ -14650,7 +14647,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 299635,694 WASHINGTON ST,DEDHAM,DEP REGULATED FACILITY,LINOS SERVICE STATION INC,REGULATED ACTIVITY(S),,False 299638,RTE 2 AND COMMERCIAL BLVD,LEOMINSTER,DEP REGULATED FACILITY,RITZ CAMERA CENTER #624,REGULATED ACTIVITY(S),530176025,False 299639,20 BOSTON RD,CHELMSFORD,DEP REGULATED FACILITY,RITZ CAMERA CENTER 841,REGULATED ACTIVITY(S),530176025,False -299642,601 DONALD LYNCH BLVD,MARLBOROUGH,DEP REGULATED FACILITY,APPLE INC R622,REGULATED ACTIVITY(S),,False +299642,601 DONALD LYNCH BLVD,MARLBOROUGH,DEP REGULATED FACILITY,APPLE INC R622,REGULATED ACTIVITY(S),,True 299664,255 INDEPENDENCE DR,BARNSTABLE,DEP REGULATED FACILITY,EXCEL SWITCHING CORP,REGULATED ACTIVITY(S),,False 299671,295 MISHAWUM RD,WOBURN,DEP REGULATED FACILITY,SCRUB A DUB AUTO WASH CENTERS INC,REGULATED ACTIVITY(S),,True 299738,316 NORTH PEARL ST,BROCKTON,DEP REGULATED FACILITY,CVS 1006,REGULATED ACTIVITY(S),203621694,True @@ -16071,7 +16068,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 307549,NORTONS PT,MANCHESTER,DEP REGULATED FACILITY,WILSON ALAN,REGULATED ACTIVITY(S),,True 307553,1055 WASHINGTON ST,EAST BRIDGEWATER,RELEASE,CUMBERLAND FARMS,WASTE SITE CLEANUP,,True 307566,194 WEST STATE ST,GRANBY,DEP REGULATED FACILITY,HOLYOKE RANGE STATE PARK,REGULATED ACTIVITY(S),,True -307568,9 NASON ST,MAYNARD,DEP REGULATED FACILITY,MONDOVI DENTAL,REGULATED ACTIVITY(S),,False +307568,9 NASON ST,MAYNARD,DEP REGULATED FACILITY,MONDOVI DENTAL,REGULATED ACTIVITY(S),,True 307571,233 OLD WEBSTER RD,OXFORD,DEP REGULATED FACILITY,RJ MOSCOFFIAN,REGULATED ACTIVITY(S),043495700,True 307575,501 GLEASONDALE RD,STOW,DEP REGULATED FACILITY,KENYA BAGS & CRAFTS,REGULATED ACTIVITY(S),,True 307576,501 GLEASONDALE RD,STOW,DEP REGULATED FACILITY,LAZOTT PLASTICS CORP,REGULATED ACTIVITY(S),,False @@ -17909,7 +17906,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 317008,147 KING ST,LITTLETON,DEP REGULATED FACILITY,PONDSIDE APTS,REGULATED ACTIVITY(S),,True 317013,9 SECOND ST,PALMER,DEP REGULATED FACILITY,TRANSPLASTICS INC,REGULATED ACTIVITY(S),,True 317025,92 NORTH ST,CHESTERFIELD,DEP REGULATED FACILITY,GREENE RESIDENCE,REGULATED ACTIVITY(S),,True -317031,380 PEARL ST,MALDEN,DEP REGULATED FACILITY,M&M LABEL CO,REGULATED ACTIVITY(S),314744,False +317031,380 PEARL ST,MALDEN,DEP REGULATED FACILITY,M&M LABEL CO,REGULATED ACTIVITY(S),314744,True 317032,130 JACKSON ST,CANTON,DEP REGULATED FACILITY,INDOPCO,REGULATED ACTIVITY(S),,True 317035,120 MAIN ST,NORTH ANDOVER,DEP REGULATED FACILITY,NORTH ANDOVER TOWN OF,REGULATED ACTIVITY(S),,True 317041,42 DEERHILL RD,TAUNTON,DEP REGULATED FACILITY,MARTIN CRAIG,REGULATED ACTIVITY(S),,True @@ -20079,7 +20076,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 328449,174 SQUIRE RD,REVERE,DEP REGULATED FACILITY,MOTIVA ENTERPRISES LLC,REGULATED ACTIVITY(S),,False 328450,345 BENNETT HWY,REVERE,DEP REGULATED FACILITY,NOURIA 1045,REGULATED ACTIVITY(S),888888888,True 328454,161R LINDEN ST,WELLESLEY,DEP REGULATED FACILITY,F DIEHL & SON INC,REGULATED ACTIVITY(S),,False -328457,AMERICAN LEGION HWY,BOSTON,DEP REGULATED FACILITY,APPLE DOR TREE INC,REGULATED ACTIVITY(S),,False +328457,AMERICAN LEGION HWY,BOSTON,DEP REGULATED FACILITY,APPLE DOR TREE INC,REGULATED ACTIVITY(S),,True 328462,15 CALVARY ST,WALTHAM,DEP REGULATED FACILITY,BEAVER CREEK COMPOSTING,REGULATED ACTIVITY(S),,True 328466,111 NORTH ST,SALEM,DEP REGULATED FACILITY,SALEM SHELL,REGULATED ACTIVITY(S),043561789,True 328467,146 BOSTON ST,SALEM,DEP REGULATED FACILITY,NOURIA 1047,REGULATED ACTIVITY(S),,True @@ -20266,7 +20263,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 329587,111 COUNTY RD,PLYMPTON,DEP REGULATED FACILITY,BROWN BENJAMIN,REGULATED ACTIVITY(S),,True 329593,1 SUMMER ST,BOSTON,DEP REGULATED FACILITY,LEVEL 3 COMMUNICATIONS LLC,REGULATED ACTIVITY(S),470807040,True 329595,84 STODGEMEADOW RD,ASHBURNHAM,DEP REGULATED FACILITY,84 STODGEMEADOW RD,REGULATED ACTIVITY(S),,True -329599,1105 LAKEVIEW AVE,DRACUT,DEP REGULATED FACILITY,JAMES E PHELAN DMD,REGULATED ACTIVITY(S),,False +329599,1105 LAKEVIEW AVE,DRACUT,DEP REGULATED FACILITY,JAMES E PHELAN DMD,REGULATED ACTIVITY(S),,True 329602,300 MIDDLESEX AVE,MEDFORD,DEP REGULATED FACILITY,MONOGRAM GOURMET FOODS LLC,REGULATED ACTIVITY(S),741989366,True 329607,REEDS LN,HOLBROOK,DEP REGULATED FACILITY,BELAIR ESTATES,REGULATED ACTIVITY(S),,True 329623,825 PROVIDENCE HWY,DEDHAM,DEP REGULATED FACILITY,FEDERAL REALTY LP OP,REGULATED ACTIVITY(S),,True @@ -23129,7 +23126,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 346829,275 OLD LANCASTER RD,SUDBURY,DEP REGULATED FACILITY,SUDBURY COMPOST SITE,REGULATED ACTIVITY(S),,True 346831,1079 SOUTH ST,TEWKSBURY,DEP REGULATED FACILITY,BMC CORP COMPOST SITE,REGULATED ACTIVITY(S),,True 346834,297 BOSTON RD,TOPSFIELD,DEP REGULATED FACILITY,TOPSFIELD COMPOST SITE,REGULATED ACTIVITY(S),,True -346836,NAHANT ST,WAKEFIELD,DEP REGULATED FACILITY,WAKEFIELD COMPOST SITE,REGULATED ACTIVITY(S),,False +346836,NAHANT ST,WAKEFIELD,DEP REGULATED FACILITY,WAKEFIELD COMPOST SITE,REGULATED ACTIVITY(S),,True 346838,ROBBINS RD,WALPOLE,DEP REGULATED FACILITY,WALPOLE COMPOST SITE,REGULATED ACTIVITY(S),,True 346842,662 MAIN ST,BOLTON,DEP REGULATED FACILITY,662 MAIN ST,REGULATED ACTIVITY(S),,True 346844,9 INNIS DR,BILLERICA,DEP REGULATED FACILITY,MANCINIS SHEET METAL,REGULATED ACTIVITY(S),,True @@ -23140,7 +23137,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 346876,21 REAR OLD MAIN ST,DENNIS,DEP REGULATED FACILITY,COVE VIEW CONDOMINIUMS,REGULATED ACTIVITY(S),,True 346878,215 WALKER ST,FALMOUTH,DEP REGULATED FACILITY,TUCHMANN ROBERT,REGULATED ACTIVITY(S),,True 346880,1 HIGH ST,DARTMOUTH,DEP REGULATED FACILITY,MIRACLE LAND COMPANY,REGULATED ACTIVITY(S),,True -346887,203 PROSPECT ST,WALTHAM,DEP REGULATED FACILITY,WALTHAM COMPOST SITE,REGULATED ACTIVITY(S),,False +346887,203 PROSPECT ST,WALTHAM,DEP REGULATED FACILITY,WALTHAM COMPOST SITE,REGULATED ACTIVITY(S),,True 346891,47 POND DR,WAYLAND,RELEASE,CREST RD,WASTE SITE CLEANUP,,True 346893,363 WASHINGTON ST,DUXBURY,DEP REGULATED FACILITY,363D WASHINGTON STREET REALTY TRUST,REGULATED ACTIVITY(S),,True 346895,16 WOODRIDGE RD,ORLEANS,DEP REGULATED FACILITY,SKARIN FRANCIS,REGULATED ACTIVITY(S),,True @@ -24619,7 +24616,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 364461,15 KEARNEY SQ,LOWELL,DEP REGULATED FACILITY,LOWELL SUN PUBLISHING CO,REGULATED ACTIVITY(S),841504698,True 364462,8 OLD NORTH WHARF,NANTUCKET,DEP REGULATED FACILITY,DUNFEY JOHN P,REGULATED ACTIVITY(S),,True 364465,3171 DIRECTORS ROW,,DEP REGULATED FACILITY,MS CARRIERS,REGULATED ACTIVITY(S),,False -364475,1301 WASHINGTON ST,NEWTON,DEP REGULATED FACILITY,KC CLEANERS AND TAILORS INC,REGULATED ACTIVITY(S),043545875,True +364475,1301 WASHINGTON ST,NEWTON,DEP REGULATED FACILITY,CORNER CLEANERS,REGULATED ACTIVITY(S),043545875,True 364507,109 NARROWS RD,FREETOWN,DEP REGULATED FACILITY,FUCILE JAMES,REGULATED ACTIVITY(S),,True 364509,8 OSPREY DR,BERKLEY,DEP REGULATED FACILITY,HIGGINSON EDWARD,REGULATED ACTIVITY(S),,True 364511,43 AREYS LN,ORLEANS,DEP REGULATED FACILITY,AREYS POND BOAT YARD,REGULATED ACTIVITY(S),,True @@ -24646,7 +24643,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 364614,VIRGINIA DR,LEICESTER,DEP REGULATED FACILITY,OAK RIDGE ESTATES,REGULATED ACTIVITY(S),,True 364616,MAPLE AVE,RUTLAND,DEP REGULATED FACILITY,SENIOR LIVING COMPLEX,REGULATED ACTIVITY(S),,True 364618,TAINTER HILL RD,MILLBURY,DEP REGULATED FACILITY,SHOPPES AT BLACKSTONE VALLEY,REGULATED ACTIVITY(S),,True -364620,40 1ST ST,LOWELL,DEP REGULATED FACILITY,ALL SPORTS PROMOTIONS,REGULATED ACTIVITY(S),884388921,True 364623,CHARTER RD,ACTON,DEP REGULATED FACILITY,MERRIAM ELEMENTARY SCHOOL,REGULATED ACTIVITY(S),,True 364640,NORTH QUINSIGAMOND AVE,SHREWSBURY,DEP REGULATED FACILITY,CORAZZINI BOAT LAUNCH RAMP,REGULATED ACTIVITY(S),,True 364642,MCKEON RD,WORCESTER,DEP REGULATED FACILITY,MCKEON RD BRIDGE,REGULATED ACTIVITY(S),,True @@ -24831,7 +24827,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 365786,45 RESNICK RD,PLYMOUTH,DEP REGULATED FACILITY,GAMBRO HEALTHCARE,REGULATED ACTIVITY(S),,False 365789,1586 HYDE PARK AVE,BOSTON,DEP REGULATED FACILITY,M SUSI HMA LLC,REGULATED ACTIVITY(S),261441405,True 365796,CPE COD RAIL TRL,ORLEANS,DEP REGULATED FACILITY,MA DEPARTMENT OF ENVIRONMENTAL MGT,REGULATED ACTIVITY(S),,True -365798,48 COOLIDGE AVE,WATERTOWN,DEP REGULATED FACILITY,AMRIZE NORTHEAST INC,REGULATED ACTIVITY(S),042079391,True +365798,48 COOLIDGE AVE,WATERTOWN,DEP REGULATED FACILITY,HOLCIM NER INC,REGULATED ACTIVITY(S),042079391,True 365802,6 MARTIN RD,DENNIS,DEP REGULATED FACILITY,DAVENPORT REALTY TRUST,REGULATED ACTIVITY(S),,True 365805,728 PEARSE RD,SWANSEA,DEP REGULATED FACILITY,ALVES CAROLYN,REGULATED ACTIVITY(S),,True 365810,254 WATER ST,HANOVER,DEP REGULATED FACILITY,SCOTT SANDRA,REGULATED ACTIVITY(S),,True @@ -25079,7 +25075,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 367144,EAST SIDE RD,WRENTHAM,DEP REGULATED FACILITY,THOMPSON SILVIA,REGULATED ACTIVITY(S),,True 367152,2A WEST DR,MARION,DEP REGULATED FACILITY,HARBOR OAKS NOMINEE TRUST,REGULATED ACTIVITY(S),,True 367167,446-456 RUSSELL ST,HADLEY,DEP REGULATED FACILITY,STOP & SHOP SUPERMARKET 95,REGULATED ACTIVITY(S),043061447,True -367169,510 MAIN ST,MEDFORD,DEP REGULATED FACILITY,AL PRIME ENERGY 195,REGULATED ACTIVITY(S),,True +367169,510 MAIN ST,MEDFORD,DEP REGULATED FACILITY,A L PRIME ENERGY 195,REGULATED ACTIVITY(S),,True 367171,1640 MAIN ST,BROCKTON,DEP REGULATED FACILITY,AL PRIME ENERGY 124,REGULATED ACTIVITY(S),,True 367175,431 DAVOL ST,FALL RIVER,DEP REGULATED FACILITY,MS GAS SERVICES LLC,REGULATED ACTIVITY(S),273133485,True 367177,1032 HIGHLAND AVE,NEEDHAM,DEP REGULATED FACILITY,AKAR AUTO CENTER,REGULATED ACTIVITY(S),001443112,True @@ -26034,7 +26030,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 371739,45 EAST MAIN ST,WESTBOROUGH,DEP REGULATED FACILITY,LEES CALIFORNIA CLEANERS,REGULATED ACTIVITY(S),010608556,False 371744,313 PLEASANT ST,WATERTOWN,DEP REGULATED FACILITY,PINTEX PHARMACEUTICALS INC,REGULATED ACTIVITY(S),,False 371749,73 NORTH MAIN ST,MIDDLETON,DEP REGULATED FACILITY,RAYS AUTO SERVICE,REGULATED ACTIVITY(S),,False -371753,24 INDUSTRIAL RD,WALPOLE,DEP REGULATED FACILITY,GAF MATERIALS CORP,REGULATED ACTIVITY(S),223626208,False +371753,24 INDUSTRIAL RD,WALPOLE,DEP REGULATED FACILITY,GAF MATERIALS CORP,REGULATED ACTIVITY(S),223626208,True 371757,153 BLOSSOM ST,LYNN,DEP REGULATED FACILITY,UNLIMITED REMOVAL & DEMOLITION INC,REGULATED ACTIVITY(S),,False 371761,27 LINDOR RD,NORTH READING,DEP REGULATED FACILITY,JOHN KILEY,REGULATED ACTIVITY(S),,True 371767,MAGNOLIA DR,WESTFORD,DEP REGULATED FACILITY,HITCHIN' POST GREENS II,REGULATED ACTIVITY(S),,True @@ -27549,7 +27545,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 379596,14 CAVANAGH RD,SCITUATE,DEP REGULATED FACILITY,WOODRUFF PAMELA,REGULATED ACTIVITY(S),,True 379598,9 ROLLING HILLS DR,EAST BRIDGEWATER,DEP REGULATED FACILITY,SHORT ROBERT,REGULATED ACTIVITY(S),,True 379623,1077 EAST ST,DEDHAM,DEP REGULATED FACILITY,MIKES AUTOMOTIVE SERVICE CO,REGULATED ACTIVITY(S),,True -379625,76 POND ST,WEYMOUTH,DEP REGULATED FACILITY,MASS TIRE & AUTO SERVICE INC,REGULATED ACTIVITY(S),,True +379625,76 POND ST,WEYMOUTH,DEP REGULATED FACILITY,MASS TIRE & AUTO,REGULATED ACTIVITY(S),,True 379634,824 WATER ST,FITCHBURG,DEP REGULATED FACILITY,DUFOURS TRAILER CENTER,REGULATED ACTIVITY(S),,True 379639,424 LONG POND RD,PLYMOUTH,PUBLIC WATER SUPPLY SYSTEM,CROSSWINDS GOLF CLUB,WATER SUPPLY/DRINKING WATER,4239056,True 379651,188 LONGWOOD AVE,BOSTON,DEP REGULATED FACILITY,HARVARD UNIVERSITY LONGWOOD CAMPUS,REGULATED ACTIVITY(S),042103580,True @@ -30111,7 +30107,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 394836,17 UPHAM ST REAR,MELROSE,DEP REGULATED FACILITY,K&K AUTO BODY,REGULATED ACTIVITY(S),,False 394840,38 COMMON ST,SCITUATE,DEP REGULATED FACILITY,ESTATE OF ELEANOR HARRINGTON,REGULATED ACTIVITY(S),,True 394842,20 COUNTRY CLUB DR,WALPOLE,DEP REGULATED FACILITY,MARGARET GAETANI,REGULATED ACTIVITY(S),,True -394848,40 SHATTUCK RD,ANDOVER,DEP REGULATED FACILITY,DISCO HI TEC AMERICA INC,REGULATED ACTIVITY(S),,False +394848,40 SHATTUCK RD,ANDOVER,DEP REGULATED FACILITY,DISCO HI TEC AMERICA INC,REGULATED ACTIVITY(S),,True 394851,150 SOUTH MAIN ST,MIDDLEBOROUGH,DEP REGULATED FACILITY,CUMBERLAND FARMS 2505,REGULATED ACTIVITY(S),042843586,True 394854,4 SOUTH MAIN ST,MIDDLETON,DEP REGULATED FACILITY,CUMBERLAND FARMS 2471,REGULATED ACTIVITY(S),042843586,True 394856,860 MAIN ST,MILLIS,DEP REGULATED FACILITY,CUMBERLAND FARMS INC,REGULATED ACTIVITY(S),042843586,False @@ -30155,7 +30151,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 394996,GROVELAND AND OAKGROVE ST,AYER,DEP REGULATED FACILITY,GROVELAND & OAKGROVE ST SEWER EXTENSION,REGULATED ACTIVITY(S),,True 394999,142 CORBETT RD,STOUGHTON,DEP REGULATED FACILITY,TEIXEIRA DELORES,REGULATED ACTIVITY(S),,True 395001,98 CAMBRIDGE ST,MIDDLEBOROUGH,DEP REGULATED FACILITY,CLEMENTS GEORGE P,REGULATED ACTIVITY(S),,True -395004,292 MAIN ST,SPRINGFIELD,DEP REGULATED FACILITY,BALISE COLLISION REPAIR CENTER,REGULATED ACTIVITY(S),550811490,True 395014,33 MAIN ST,WESTFIELD,DEP REGULATED FACILITY,WESTFIELD EXXON TIGER MART,REGULATED ACTIVITY(S),,False 395023,975 PROVIDENCE HWY,WALPOLE,DEP REGULATED FACILITY,PMG 8654,REGULATED ACTIVITY(S),001222848,True 395025,892 LEXINGTON ST,WALTHAM,DEP REGULATED FACILITY,PMG 8660,REGULATED ACTIVITY(S),001222848,True @@ -30596,7 +30591,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 396955,BEACON BLVD,PEABODY,DEP REGULATED FACILITY,BEACON BOULEVARD,REGULATED ACTIVITY(S),,True 396958,WAWELA PARK ANDSENIC AVE,WEBSTER,DEP REGULATED FACILITY,WAWELA PARK & SCENIC AV SEWER EXT.,REGULATED ACTIVITY(S),,True 396960,SCOTT ST,GLOUCESTER,DEP REGULATED FACILITY,MINOR SEWER EXTENSION,REGULATED ACTIVITY(S),,True -396962,231 WEST GILL RD,GILL,PUBLIC WATER SUPPLY SYSTEM,SUNDAES AT LENAS,WATER SUPPLY/DRINKING WATER,1106008,True +396962,231 WEST GILL RD,GILL,PUBLIC WATER SUPPLY SYSTEM,SUNDAES WITH LENAS,WATER SUPPLY/DRINKING WATER,1106008,True 396964,140 PALMER RD,PLYMPTON,DEP REGULATED FACILITY,DOHERTY FAMILY TRUST,REGULATED ACTIVITY(S),,True 396973,438 WEIR RD,YARMOUTH,DEP REGULATED FACILITY,ELBOW POND BOG REALTY TRUST,REGULATED ACTIVITY(S),,True 396975,125 BRIDGE ST,SALISBURY,DEP REGULATED FACILITY,SALISBURY WOODS,REGULATED ACTIVITY(S),,True @@ -30637,7 +30632,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 397119,29 LEGATE HILL RD,STERLING,DEP REGULATED FACILITY,NMJ REALTY,REGULATED ACTIVITY(S),,True 397126,349 WILBRAHAM ST,PALMER,DEP REGULATED FACILITY,BARN TAVERN,REGULATED ACTIVITY(S),,True 397130,9 ASHWOOD RD,PAXTON,DEP REGULATED FACILITY,9 ASHWOOD RD,REGULATED ACTIVITY(S),,True -397138,54 HOPEDALE ST,HOPEDALE,DEP REGULATED FACILITY,PARK PLACE DENTAL,REGULATED ACTIVITY(S),,False +397138,54 HOPEDALE ST,HOPEDALE,DEP REGULATED FACILITY,PARK PLACE DENTAL,REGULATED ACTIVITY(S),,True 397156,17 UNION ST,HINGHAM,DEP REGULATED FACILITY,HINGHAM HIGH SCHOOL,REGULATED ACTIVITY(S),,True 397164,471 COOLEY ST,SPRINGFIELD,DEP REGULATED FACILITY,BIG Y EXPRESS 116,REGULATED ACTIVITY(S),001025198,True 397171,64 NORTH MONTELLO ST,BROCKTON,DEP REGULATED FACILITY,YSNC FUEL INC,REGULATED ACTIVITY(S),,True @@ -31247,7 +31242,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 399981,19 RICHARDS RD,PLYMOUTH,DEP REGULATED FACILITY,CRANBERRY PRINTING & GRAPHICS,REGULATED ACTIVITY(S),042890266,False 399983,GEORGIANA RD,BILLERICA,DEP REGULATED FACILITY,GEORGIANA ROAD - GEORGIA PINES,REGULATED ACTIVITY(S),,True 399986,1006 AND 1040 REVERE BEACH PKWY,CHELSEA,DEP REGULATED FACILITY,PARKWAY PLAZA,REGULATED ACTIVITY(S),,True -399989,50 COOLIDGE AVE,PEABODY,DEP REGULATED FACILITY,WALSH WATER TREATMENT PLANT,REGULATED ACTIVITY(S),,False +399989,50 COOLIDGE AVE,PEABODY,DEP REGULATED FACILITY,WALSH WATER TREATMENT PLANT,REGULATED ACTIVITY(S),,True 399992,500 BEAVER BROOK RD,BOXBOROUGH,DEP REGULATED FACILITY,CAMPANELLI DEVELOPMENT LLC,REGULATED ACTIVITY(S),770059951,True 399995,2 SHAKER RD,SHIRLEY,DEP REGULATED FACILITY,SOLVAY ENGINEERED POLYMERS,REGULATED ACTIVITY(S),,True 399997,680 WELLESLEY ST,WESTON,DEP REGULATED FACILITY,EXISTING HOUSE,REGULATED ACTIVITY(S),,True @@ -31290,7 +31285,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 400178,FREMONT ST,WORCESTER,DEP REGULATED FACILITY,FREMONT ST,REGULATED ACTIVITY(S),,True 400182,175 WEST WATER ST,TAUNTON,DEP REGULATED FACILITY,PRIMARY GRAPHICS CORPORATION,REGULATED ACTIVITY(S),043485989,True 400183,49 GREENFIELD ST,GREENFIELD,DEP REGULATED FACILITY,SWM GREENFIELD,REGULATED ACTIVITY(S),621612879,True -400185,670 ALBANY ST,BOSTON,DEP REGULATED FACILITY,BOSTON MEDICAL CENTER CORPORATION,REGULATED ACTIVITY(S),611762416,True +400185,670 ALBANY ST,BOSTON,DEP REGULATED FACILITY,CENTURION BIOSQUARE INC,REGULATED ACTIVITY(S),611762416,True 400187,PRESERVATION LN,TEWKSBURY,DEP REGULATED FACILITY,PRESERVATION LANE CONDOMINIUMS,REGULATED ACTIVITY(S),,True 400191,118 GRAPEVINE RD,WENHAM,DEP REGULATED FACILITY,SEPTIC SYSTEM REPAIR,REGULATED ACTIVITY(S),,True 400193,20 BOW ST,COHASSET,DEP REGULATED FACILITY,SEPTIC SYSTEM REPAIR,REGULATED ACTIVITY(S),,True @@ -31720,6 +31715,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 402497,179 PEARL ST,BRAINTREE,DEP REGULATED FACILITY,PEARL CLEANERS,REGULATED ACTIVITY(S),542117265,True 402498,400 HOLLIS RD,LUNENBURG,DEP REGULATED FACILITY,400 HOLLIS RD,REGULATED ACTIVITY(S),,True 402508,43 FOSTER ST,PEABODY,DEP REGULATED FACILITY,METRO CLEANERS,REGULATED ACTIVITY(S),043543320,True +402509,29 FRANCIS ST,REHOBOTH,PUBLIC WATER SUPPLY SYSTEM,JOHNSON AND WALES EQUESTRIAN CENTER,WATER SUPPLY/DRINKING WATER,4247053,True 402510,214 MAIN ST,LANCASTER,DEP REGULATED FACILITY,MAIN ST SUNOCO,REGULATED ACTIVITY(S),000939656,True 402517,491 BLUE HILL AVE,BOSTON,DEP REGULATED FACILITY,STAR ONE HOUR CLEANERS CORP,REGULATED ACTIVITY(S),043550489,False 402521,1237 HIGH ST,WESTWOOD,DEP REGULATED FACILITY,WESTWOOD SUNOCO,REGULATED ACTIVITY(S),,True @@ -33225,7 +33221,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 411671,264 WILLOW ST,YARMOUTH,DEP REGULATED FACILITY,GOLD STAR WHOLESALE NURSERY,REGULATED ACTIVITY(S),,True 411679,61 BLACK DUCK RD,CONCORD,DEP REGULATED FACILITY,TIGHT TANK,REGULATED ACTIVITY(S),,True 411681,127 1/2 BRIDGE ST,BEVERLY,DEP REGULATED FACILITY,BRIDGE STREET GAS AND CONVENIENCE,REGULATED ACTIVITY(S),,False -411686,ATWATER AVE,MANCHESTER,DEP REGULATED FACILITY,BLUE SKY COMPOST SITE,REGULATED ACTIVITY(S),,False +411686,ATWATER AVE,MANCHESTER,DEP REGULATED FACILITY,BLUE SKY COMPOST SITE,REGULATED ACTIVITY(S),,True 411688,MARRETT ST,BEDFORD,DEP REGULATED FACILITY,US HANSCOM AIR FORCE BASE - FITNESS CTR,REGULATED ACTIVITY(S),,False 411693,6 LINCOLN DR,LITTLETON,DEP REGULATED FACILITY,6 LINCOLN DR,REGULATED ACTIVITY(S),,True 411695,16 ADAMS ST,LITTLETON,DEP REGULATED FACILITY,16 ADAMS ST,REGULATED ACTIVITY(S),,True @@ -33734,7 +33730,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 414108,321 ALBANY ST,SPRINGFIELD,DEP REGULATED FACILITY,BOBKER BEARINGS,REGULATED ACTIVITY(S),042711318,True 414109,28 DEPOT ST,PALMER,PUBLIC WATER SUPPLY SYSTEM,STEAMING TENDER,WATER SUPPLY/DRINKING WATER,1227014,True 414115,447 WAREHAM ST,MIDDLEBOROUGH,DEP REGULATED FACILITY,NOURIA 1159,REGULATED ACTIVITY(S),,True -414119,563 SOUTH WASHINGTON ST,NORTH ATTLEBOROUGH,DEP REGULATED FACILITY,EMERALD AUTO SALES AND SERVICE INC,REGULATED ACTIVITY(S),,False +414119,563 SOUTH WASHINGTON ST,NORTH ATTLEBOROUGH,DEP REGULATED FACILITY,EMERALD AUTO SALES AND SERVICE INC,REGULATED ACTIVITY(S),,True 414144,331 OAK ST,BROCKTON,DEP REGULATED FACILITY,DW FIELD PARK GOLF COURSE,REGULATED ACTIVITY(S),,True 414146,34 TAYLOR POINT RD,PEMBROKE,DEP REGULATED FACILITY,COSTA & EATON JOE & JANET,REGULATED ACTIVITY(S),,True 414148,206 SOUTH ST,EAST BRIDGEWATER,DEP REGULATED FACILITY,MATTA ROSEMARY,REGULATED ACTIVITY(S),,True @@ -34699,7 +34695,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 418570,3 MOUNT HOPE AVE,SWANSEA,DEP REGULATED FACILITY,MANN BRAGA,REGULATED ACTIVITY(S),,True 418572,181 SOUTHBRIDGE RD,DUDLEY,DEP REGULATED FACILITY,SOUTHBRIDGE TOOL & MFG,REGULATED ACTIVITY(S),,True 418574,78 SEAVIEW AVE,SWANSEA,DEP REGULATED FACILITY,PRISCILLA MCCANN,REGULATED ACTIVITY(S),,True -418576,59 DWIGHT ST,HATFIELD,DEP REGULATED FACILITY,TURF CARE SUPPLY LLC,REGULATED ACTIVITY(S),203239282,True +418576,59 DWIGHT ST,HATFIELD,DEP REGULATED FACILITY,SPRING VALLEY USA,REGULATED ACTIVITY(S),203239282,True 418577,70 LEES RIVER DR,SWANSEA,DEP REGULATED FACILITY,GEORGE DEVINE,REGULATED ACTIVITY(S),,True 418582,14 CIRCUIT DR,SWANSEA,DEP REGULATED FACILITY,DENNIS LEONARDO,REGULATED ACTIVITY(S),,True 418584,100 BLUFF AVE,SWANSEA,DEP REGULATED FACILITY,ROBERT & SALLY EVANS,REGULATED ACTIVITY(S),,True @@ -36451,7 +36447,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 426230,11 ANGENICA TER,MARBLEHEAD,DEP REGULATED FACILITY,IMPLANT DENTISTRY OF THE NORTH,REGULATED ACTIVITY(S),414381,False 426241,108 MAIN ST,FALMOUTH,DEP REGULATED FACILITY,MATTHEW V JONES DMD PLLC,REGULATED ACTIVITY(S),530399,True 426245,10 MAIN ST,SANDWICH,DEP REGULATED FACILITY,PATRICK M MACDONALD DDS,REGULATED ACTIVITY(S),532742,True -426247,331 COTUIT RD,SANDWICH,DEP REGULATED FACILITY,SMILE DESIGN STUDIO,REGULATED ACTIVITY(S),533098,True +426247,331 COTUIT RD,SANDWICH,DEP REGULATED FACILITY,PETER SCHORTMANN DDS,REGULATED ACTIVITY(S),533098,True 426250,197 BARNSTABLE RD,BARNSTABLE,DEP REGULATED FACILITY,ADVANCED COSMETIC DENTISTRY,REGULATED ACTIVITY(S),534780,True 426259,35 HIGH SCHOOL ROAD EXT,BARNSTABLE,DEP REGULATED FACILITY,RJ HASKELL DMD PC,REGULATED ACTIVITY(S),535709,True 426265,188 WINTER ST,BARNSTABLE,DEP REGULATED FACILITY,WINTER STREET DENTAL GROUP,REGULATED ACTIVITY(S),536666,True @@ -36473,7 +36469,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 426318,70 NORTH MAIN ST,CARVER,DEP REGULATED FACILITY,CRANBERRY DENTAL ASSOCIATES,REGULATED ACTIVITY(S),496963,True 426327,10 CANNON HILL RD,WELLFLEET,DEP REGULATED FACILITY,OUTER CAPE DENTAL GROUP LLC,REGULATED ACTIVITY(S),543039,True 426348,551 ROCK ST,FALL RIVER,DEP REGULATED FACILITY,ROCK STREET PEDODONTICS,REGULATED ACTIVITY(S),548114,True -426353,1190 STAFFORD RD,FALL RIVER,DEP REGULATED FACILITY,MONDOVI DENTAL - FALL RIVER,REGULATED ACTIVITY(S),548979,False +426353,1190 STAFFORD RD,FALL RIVER,DEP REGULATED FACILITY,MONDOVI DENTAL - FALL RIVER,REGULATED ACTIVITY(S),548979,True 426355,422 MARIANO BISHOP BLVD,FALL RIVER,DEP REGULATED FACILITY,TRUE DENTAL,REGULATED ACTIVITY(S),549233,True 426363,32 HILLMAN ST,NEW BEDFORD,DEP REGULATED FACILITY,SOUTHEASTERN NEW ENGLAND DENTAL GROUP,REGULATED ACTIVITY(S),552173,False 426368,84 SPRING ST,NEW BEDFORD,DEP REGULATED FACILITY,REDDY DENTAL ASSOCIATES,REGULATED ACTIVITY(S),552924,True @@ -36800,7 +36796,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 427679,128 TREMONT ST,BOSTON,DEP REGULATED FACILITY,PARK STREET DENTAL ASSOCIATES,REGULATED ACTIVITY(S),35943,False 427682,90 BOSTON PROVIDENCE HWY,WALPOLE,DEP REGULATED FACILITY,UNIDENT DENTAL GROUP,REGULATED ACTIVITY(S),35990,True 427687,61 RAILROAD AVE,HAMILTON,DEP REGULATED FACILITY,HAMILTON DENTISTRY,REGULATED ACTIVITY(S),40926,True -427688,1092 MAIN ST,HOLDEN,DEP REGULATED FACILITY,"SIMPLY DENTAL OF HOLDEN, PLLC",REGULATED ACTIVITY(S),,True +427688,1092 MAIN ST,HOLDEN,DEP REGULATED FACILITY,NEAL M NOVACK DMD PC,REGULATED ACTIVITY(S),40927,True 427689,1 CRANE PARK DR,WILBRAHAM,DEP REGULATED FACILITY,PETER J DUPLESSIS DMD,REGULATED ACTIVITY(S),40929,True 427691,79 BYRON AVE,BROCKTON,DEP REGULATED FACILITY,ROBERT FRECCERO DDS,REGULATED ACTIVITY(S),40932,False 427692,33 WALKER RD,NORTH ANDOVER,DEP REGULATED FACILITY,DENTAL HEALTH SOLUTIONS OF NORTH ANDOVER,REGULATED ACTIVITY(S),40935,True @@ -36815,7 +36811,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 427723,56 BENNINGTON ST,BOSTON,DEP REGULATED FACILITY,LILIANA DIFABIO DMD,REGULATED ACTIVITY(S),41711,True 427727,76 OTIS ST,WESTBOROUGH,DEP REGULATED FACILITY,ALL DENTAL OF WESTBOROUGH,REGULATED ACTIVITY(S),41857,True 427729,115 THOREAU ST,CONCORD,DEP REGULATED FACILITY,STEPHEN M VULTAGGIO DDS,REGULATED ACTIVITY(S),41931,True -427730,119 ROUTE 137,HARWICH,DEP REGULATED FACILITY,MONDOVI DENTAL,REGULATED ACTIVITY(S),41985,True +427730,119 ROUTE 137,HARWICH,DEP REGULATED FACILITY,DR GARY D CAMPAGNA,REGULATED ACTIVITY(S),41985,True 427732,420 SOUTH WASHINGTON ST,NORTH ATTLEBOROUGH,DEP REGULATED FACILITY,"NORTH ATTLEBORO DENTIST, P.C.",REGULATED ACTIVITY(S),36221,True 427734,285 CENTRAL ST,LEOMINSTER,DEP REGULATED FACILITY,NIRVANA DENTAL,REGULATED ACTIVITY(S),36243,True 427735,558 ELECTRIC AVE,FITCHBURG,DEP REGULATED FACILITY,BRIAN C MCDOWELL DDS,REGULATED ACTIVITY(S),36261,True @@ -36915,7 +36911,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 428042,RTE 6A,YARMOUTH,DEP REGULATED FACILITY,CAPE COD RESTORATIVE & COSMETIC DENTISTR,REGULATED ACTIVITY(S),10187,True 428043,63 EAST ST,HADLEY,DEP REGULATED FACILITY,RIVER VALLEY DENTALPC,REGULATED ACTIVITY(S),10220,True 428044,181 CONCORD AVE,CAMBRIDGE,DEP REGULATED FACILITY,RESTORATIVE DENTAL GROUP OF CAMBRIDGE,REGULATED ACTIVITY(S),10238,True -428046,627 COLLEGE HWY,SOUTHWICK,DEP REGULATED FACILITY,MONDOVI DENTAL,REGULATED ACTIVITY(S),10738,True +428046,627 COLLEGE HWY,SOUTHWICK,DEP REGULATED FACILITY,JEROME M AZIA,REGULATED ACTIVITY(S),10738,True 428049,180 STATE RD,BOURNE,DEP REGULATED FACILITY,JOSE A SAPIA DMD PC,REGULATED ACTIVITY(S),10918,True 428053,1306 WASHINGTON ST,NEWTON,DEP REGULATED FACILITY,WEST NEWTON DENTAL ASSOCIATES,REGULATED ACTIVITY(S),11305,True 428054,567 NORTH BEDFORD ST,EAST BRIDGEWATER,DEP REGULATED FACILITY,AMRITA GROVER DMD,REGULATED ACTIVITY(S),11310,False @@ -36998,7 +36994,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 428333,430 BOSTON ST,TOPSFIELD,DEP REGULATED FACILITY,METTA DENTAL ASSOCIATES,REGULATED ACTIVITY(S),26501,False 428338,1211 HIGHLAND AVE,NEEDHAM,DEP REGULATED FACILITY,RICHARD C GILLIS DMD PC,REGULATED ACTIVITY(S),26775,True 428342,801 MAIN ST,WALPOLE,DEP REGULATED FACILITY,DEBORAH YARMESH DDS,REGULATED ACTIVITY(S),38985,False -428344,30 HIGGINS CROWELL RD,YARMOUTH,DEP REGULATED FACILITY,MONDOVI DENTAL,REGULATED ACTIVITY(S),39005,False +428344,30 HIGGINS CROWELL RD,YARMOUTH,DEP REGULATED FACILITY,MONDOVI DENTAL,REGULATED ACTIVITY(S),39005,True 428345,863 COUNTY ST,SOMERSET,DEP REGULATED FACILITY,LECOMTE & VANDERPOOL DENTAL CARE LLC,REGULATED ACTIVITY(S),39006,True 428346,170 EAST FALMOUTH HWY,FALMOUTH,DEP REGULATED FACILITY,MILLPOND DENTAL,REGULATED ACTIVITY(S),39007,True 428348,207 UPPER MAIN ST,EDGARTOWN,DEP REGULATED FACILITY,EDGARTOWN DENTAL GROUP,REGULATED ACTIVITY(S),39027,True @@ -37251,7 +37247,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 432123,39 CENTER RD,GILL,DEP REGULATED FACILITY,DOUGS AUTO BODY,REGULATED ACTIVITY(S),,True 432131,HADLEY ST,SOUTH HADLEY,DEP REGULATED FACILITY,FORMER SOUTH HADLEY TOWN FARM,REGULATED ACTIVITY(S),,True 432140,434 STOCKBRIDGE RD,GREAT BARRINGTON,DEP REGULATED FACILITY,ROGER TRUCKING INC,REGULATED ACTIVITY(S),,True -432143,505 HOUSATONIC ST,LENOX,DEP REGULATED FACILITY,DALEY & SONS TRUCKING INC,REGULATED ACTIVITY(S),043402300,False +432143,505 HOUSATONIC ST,LENOX,DEP REGULATED FACILITY,DALEY & SONS TRUCKING INC,REGULATED ACTIVITY(S),043402300,True 432153,115 FLANDERS ST,WESTBOROUGH,DEP REGULATED FACILITY,INDIGENE PHARMACEUTICALS INC,REGULATED ACTIVITY(S),,False 432168,174 SQUIRE RD,REVERE,DEP REGULATED FACILITY,NOUR MARKET,REGULATED ACTIVITY(S),,True 432181,33 KEARNEY SQ,LOWELL,DEP REGULATED FACILITY,MIDDLESEX COMMUNITY COLLEGE,REGULATED ACTIVITY(S),,True @@ -37560,7 +37556,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 434199,26 WOOD AVE,MANSFIELD,DEP REGULATED FACILITY,PIKE CHARLES,REGULATED ACTIVITY(S),,True 434201,10 BOARDMAN AVE,MANCHESTER,DEP REGULATED FACILITY,TITLE 5 UPGRADE,REGULATED ACTIVITY(S),,True 434211,869 QUAKER HWY (RT 146A),UXBRIDGE,PUBLIC WATER SUPPLY SYSTEM,BJS WHOLESALE DISTRIBUTION CENTER,WATER SUPPLY/DRINKING WATER,2304013,True -434216,94A CROSS RD,TEMPLETON,DEP REGULATED FACILITY,USA AUTO RECYCLING INC,REGULATED ACTIVITY(S),,True +434216,94A CROSS RD,TEMPLETON,DEP REGULATED FACILITY,STANS AUTO PARTS,REGULATED ACTIVITY(S),,True 434218,190 BALDWINVILLE RD,PHILLIPSTON,DEP REGULATED FACILITY,OLLIES AUTO PARTS INC,REGULATED ACTIVITY(S),,True 434221,470 FRANKLIN ST,WORCESTER,DEP REGULATED FACILITY,NATIONAL AUTO RECYCLING,REGULATED ACTIVITY(S),,True 434222,550 FRANKLIN ST,WORCESTER,DEP REGULATED FACILITY,IDEAL CAR CO INC,REGULATED ACTIVITY(S),,True @@ -39095,7 +39091,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 445219,33 OLD COUNTY RD,SANDWICH,DEP REGULATED FACILITY,CRAIG CANNING,REGULATED ACTIVITY(S),,False 445225,381 WEIR ST,TAUNTON,DEP REGULATED FACILITY,PROFESSIONAL CAR ZONE,REGULATED ACTIVITY(S),,False 445246,72 JAMES ST,WORCESTER,DEP REGULATED FACILITY,NATIONAL STANDARD FORMER SITE,REGULATED ACTIVITY(S),,True -445255,210 ANDOVER ST,PEABODY,DEP REGULATED FACILITY,MALL AT NORTHSHORE LLC,REGULATED ACTIVITY(S),,True +445255,210 ANDOVER ST,PEABODY,DEP REGULATED FACILITY,NORTHSHORE MALL,REGULATED ACTIVITY(S),,True 445257,1152 MAIN ST,NORTHBRIDGE,DEP REGULATED FACILITY,MASSACHUSETTS ELECTRIC COMPANY,REGULATED ACTIVITY(S),041988940,True 445262,181B SOUTHBRIDGE RD,DUDLEY,DEP REGULATED FACILITY,BONIFACE TOOL & DIE,REGULATED ACTIVITY(S),,True 445283,DAISY LN,LUDLOW,DEP REGULATED FACILITY,DAISY LANE SUBDIVISION,REGULATED ACTIVITY(S),,True @@ -39545,7 +39541,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 449753,70 GENERAL ST,LAWRENCE,DEP REGULATED FACILITY,GENCORP INC,REGULATED ACTIVITY(S),,True 449758,CROSS ST,NEW BEDFORD,DEP REGULATED FACILITY,FARM BUREAU AUTO,REGULATED ACTIVITY(S),,True 449801,20 UPLAND RD,STONEHAM,DEP REGULATED FACILITY,UPLAND RD PUMPING STATION,REGULATED ACTIVITY(S),,True -449803,203 TREMONT ST,SPRINGFIELD,DEP REGULATED FACILITY,AUTOMATED MATERIALS HANDLING,REGULATED ACTIVITY(S),043735644,False +449803,203 TREMONT ST,SPRINGFIELD,DEP REGULATED FACILITY,AUTOMATED MATERIALS HANDLING,REGULATED ACTIVITY(S),043735644,True 449808,11 SHORE RD,TRURO,DEP REGULATED FACILITY,TRURO VINEYARDS OF CAPE COD LLC,REGULATED ACTIVITY(S),,True 449812,103 CREEPER HILL RD,GRAFTON,DEP REGULATED FACILITY,TERRATEC ENGINEERING INC,REGULATED ACTIVITY(S),,False 449815,165 FRONT ST,CHICOPEE,DEP REGULATED FACILITY,JP PRECISION MACHINE CO,REGULATED ACTIVITY(S),,False @@ -40104,7 +40100,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 454763,7 BURRAGE LN,IPSWICH,DEP REGULATED FACILITY,SEPTIC REPAIR,REGULATED ACTIVITY(S),,True 454782,901 RIVER RD,DEERFIELD,DEP REGULATED FACILITY,TREW STONE CORP LLC,REGULATED ACTIVITY(S),042216868,True 454806,16 2ND ST,LAKEVILLE,DEP REGULATED FACILITY,BABINEAU ANTHONY,REGULATED ACTIVITY(S),,True -454808,100 PRESCOTT ST,WORCESTER,DEP REGULATED FACILITY,100 PRESCOTT STREET LLC,REGULATED ACTIVITY(S),,True +454808,100 PRESCOTT ST,WORCESTER,DEP REGULATED FACILITY,COUGHLIN ELECTRICAL CONTRACTORS INC,REGULATED ACTIVITY(S),,True 454810,RTE 138,TAUNTON,DEP REGULATED FACILITY,EDS LAWN & GARDEN,REGULATED ACTIVITY(S),,True 454839,602 SHOOT FLYING HILL RD,SANDWICH,DEP REGULATED FACILITY,STEWART PAINTING CO,REGULATED ACTIVITY(S),,False 454840,10 PUTTING GREEN CIR,SANDWICH,DEP REGULATED FACILITY,CHRISTOPHER FREEMAN,REGULATED ACTIVITY(S),,True @@ -41513,6 +41509,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 468864,8 MOUTAINVIEW AVE,AYER,DEP REGULATED FACILITY,JESSICA GUGINO,REGULATED ACTIVITY(S),,True 468868,150 BLACKSTONE RIVER RD,WORCESTER,RELEASE,TANK FARM,WASTE SITE CLEANUP,,True 468869,216A CANAL ST,LAWRENCE,DEP REGULATED FACILITY,LABELLE WASTE SYSTEM,REGULATED ACTIVITY(S),,True +468877,61 PLAIN STREET,REHOBOTH,PUBLIC WATER SUPPLY SYSTEM,REHOBOTH MINI MART,WATER SUPPLY/DRINKING WATER,4247059,True 468883,40 PLEASANT ST,GRANBY,DEP REGULATED FACILITY,CHILDREN FIRST DAY SCHOOL,REGULATED ACTIVITY(S),,True 468902,NORTH SHORE DR,STOW,DEP REGULATED FACILITY,LOT 1,REGULATED ACTIVITY(S),,True 468904,LINEAR PROJECT,WESTFIELD,DEP REGULATED FACILITY,SOUTHWICK PARALLEL SEWER INTERCEPTOR,REGULATED ACTIVITY(S),,True @@ -41566,7 +41563,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 469566,8 PALMER ST,FAIRHAVEN,DEP REGULATED FACILITY,DEAN FAMILY TRUST,REGULATED ACTIVITY(S),,True 469568,40 COVE RD,SANDWICH,DEP REGULATED FACILITY,VALENTINE PAUL & JENNIFER,REGULATED ACTIVITY(S),,True 469594,487 NORTH TRL,TOLLAND,DEP REGULATED FACILITY,MARTIN WILLIAM DOCK,REGULATED ACTIVITY(S),,True -469638,0 POPLAR ST,TEWKSBURY,DEP REGULATED FACILITY,TEWKSBURY COMPOST SITE,REGULATED ACTIVITY(S),,False +469638,0 POPLAR ST,TEWKSBURY,DEP REGULATED FACILITY,TEWKSBURY COMPOST SITE,REGULATED ACTIVITY(S),,True 469688,48 FORSTER RD,MANCHESTER,DEP REGULATED FACILITY,SUBSURFACE SEWAGE DISPOSAL SYSTEM,REGULATED ACTIVITY(S),,True 469691,82 LANDS END DR,TOLLAND,DEP REGULATED FACILITY,MARCIL MATILDA RESIDENCE,REGULATED ACTIVITY(S),,True 469694,MILDRED AVE,BOSTON,RELEASE,MIDDLE SCHOOL,WASTE SITE CLEANUP,,True @@ -41908,7 +41905,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 474986,152 HARBORSIDE DR,BOSTON,DEP REGULATED FACILITY,DELTA AIR LINES INC BOS,REGULATED ACTIVITY(S),580218548,True 474991,200 LIBBEY INDUSTRIAL PKWY,WEYMOUTH,DEP REGULATED FACILITY,MASS HAULING CORP,REGULATED ACTIVITY(S),,True 474993,114 LINCOLN ST,BOSTON,DEP REGULATED FACILITY,DENORMANDY RESEARCH,REGULATED ACTIVITY(S),,True -474997,1477 BEDFORD ST,ABINGTON,DEP REGULATED FACILITY,TROUPE WASTE SERVICES INC,REGULATED ACTIVITY(S),,True 475002,19 BLAKE ST,MEDFORD,DEP REGULATED FACILITY,EDELWEISS BAKERY,REGULATED ACTIVITY(S),,True 475008,ANDERSON PL,BOSTON,DEP REGULATED FACILITY,ANDERSON PLACE CONDOS,REGULATED ACTIVITY(S),,True 475010,15 LANSDOWNE ST,BOSTON,DEP REGULATED FACILITY,HOUSE OF BLUES BOSTON,REGULATED ACTIVITY(S),,True @@ -42974,7 +42970,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 507628,191 SPRING ST,LEXINGTON,DEP REGULATED FACILITY,XEROX CORP,REGULATED ACTIVITY(S),,True 507638,ROGER ST,BILLERICA,DEP REGULATED FACILITY,ROGER ST PUMPING STATION,REGULATED ACTIVITY(S),,False 507640,51 MILBURY ST,WORCESTER,DEP REGULATED FACILITY,MASS HIGHWAY DEPT,REGULATED ACTIVITY(S),046002284,False -507645,58 DUNHAM RD,BEVERLY,DEP REGULATED FACILITY,MAESTRANZI BROTHERS,REGULATED ACTIVITY(S),042314569,True +507645,58 DUNHAM RD,BEVERLY,DEP REGULATED FACILITY,MAESTRANSI BROTHERS,REGULATED ACTIVITY(S),042314569,True 507652,64 RIVER RD,BERLIN,DEP REGULATED FACILITY,A RISI & SONS BUILDING SUPPLIES INC,REGULATED ACTIVITY(S),042579406,False 507667,31 STERLING RD,BILLERICA,DEP REGULATED FACILITY,OVERNITE TRANSPORT,REGULATED ACTIVITY(S),540481236,False 507672,950 MASSACHUSETTS AVE,CAMBRIDGE,DEP REGULATED FACILITY,BAY SQUARE CONDOMINUMS,REGULATED ACTIVITY(S),042887232,False @@ -43048,7 +43044,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 508238,5115 WASHINGTON ST,BOSTON,DEP REGULATED FACILITY,BOSTON FIRE DEPARTMENT ENGINE 55,REGULATED ACTIVITY(S),046001380,True 508240,700 EAST 4TH ST,BOSTON,DEP REGULATED FACILITY,ENGINE 2 BOSTON FIRE DEPT,REGULATED ACTIVITY(S),046001380,False 508243,174 DUDLEY ST,BOSTON,DEP REGULATED FACILITY,FIRE HOUSE ENGINE 14,REGULATED ACTIVITY(S),046001380,True -508245,19 PARISH ST,BOSTON,DEP REGULATED FACILITY,ENGINE 17 BOSTON FIRE DEPT,REGULATED ACTIVITY(S),046001380,True +508245,19 PARISH ST,BOSTON,DEP REGULATED FACILITY,ENGINE 17 BOSTON FIRE DEPT,REGULATED ACTIVITY(S),046001380,False 508247,460 CAMBRIDGE ST,BOSTON,DEP REGULATED FACILITY,FIRE HOUSE ENGINE 41,REGULATED ACTIVITY(S),046001380,True 508251,36 WASHINGTON ST,BOSTON,DEP REGULATED FACILITY,FIRE HOUSE,REGULATED ACTIVITY(S),046001380,False 508253,117 KNEELAND ST,BOSTON,DEP REGULATED FACILITY,HIGH PRESSURE PUMPING,REGULATED ACTIVITY(S),,True @@ -44272,7 +44268,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 521973,131 MORSE ST,FOXBOROUGH,DEP REGULATED FACILITY,ACE TRANSPORT SERVICE,REGULATED ACTIVITY(S),,True 521975,RTE 9,WORCESTER,DEP REGULATED FACILITY,MASS DOT HIGHWAY DIVISION,REGULATED ACTIVITY(S),,True 521985,10 PARK PLZ,BOSTON,DEP REGULATED FACILITY,MASS DOT,REGULATED ACTIVITY(S),,True -521997,326 NICHOLS RD,FITCHBURG,DEP REGULATED FACILITY,COMMUNITY HEALTH CONNECTIONS,REGULATED ACTIVITY(S),043452697,False +521997,326 NICHOLS RD,FITCHBURG,DEP REGULATED FACILITY,COMMUNITY HEALTH CONNECTIONS,REGULATED ACTIVITY(S),043452697,True 522008,193 OLD LITTLETON RD,HARVARD,DEP REGULATED FACILITY,193 OLD LITTLETON RD,REGULATED ACTIVITY(S),,True 522010,161 OFF POND ST,DUNSTABLE,DEP REGULATED FACILITY,161 OFF POND ST,REGULATED ACTIVITY(S),,True 522012,MOCKINGBIRD HILL RD,GROTON,DEP REGULATED FACILITY,ROCKY HILL SUBDIVISION,REGULATED ACTIVITY(S),,True @@ -45360,7 +45356,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 535684,1100 RUSSELLS MILLS RD,DARTMOUTH,DEP REGULATED FACILITY,DARTMOUTH FIRE DISTRICT 2,REGULATED ACTIVITY(S),,True 535711,37 SHORE AVE,LAKEVILLE,DEP REGULATED FACILITY,KING & LANGELIER CAROL & ROBERT,REGULATED ACTIVITY(S),,True 535713,46 EAST RD,SANDWICH,DEP REGULATED FACILITY,LUDDEN PAUL,REGULATED ACTIVITY(S),,True -535716,530 JOHN HANCOCK RD,TAUNTON,DEP REGULATED FACILITY,EMD MILLIPORE CORPORATION,REGULATED ACTIVITY(S),042170233,False +535716,530 JOHN HANCOCK RD,TAUNTON,DEP REGULATED FACILITY,EMD MILLIPORE CORPORATION,REGULATED ACTIVITY(S),042170233,True 535733,31 SHORE RD,GLOUCESTER,DEP REGULATED FACILITY,I/A SEPTIC SYSTEM UPGRADE,REGULATED ACTIVITY(S),,True 535737,82 DAY ST,WEST SPRINGFIELD,DEP REGULATED FACILITY,AMBER HENCHEY,REGULATED ACTIVITY(S),,True 535740,689 CANTERBURY RD,,DEP REGULATED FACILITY,"BIO-MICROBIALS, LLC",REGULATED ACTIVITY(S),,True @@ -47755,7 +47751,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 567885,60 CODMAN HILL RD,BOXBOROUGH,DEP REGULATED FACILITY,ATLANTIC TAMBONE 60 CODMAN HILL ROAD,REGULATED ACTIVITY(S),,True 567904,747 MEMORIAL DR,CHICOPEE,DEP REGULATED FACILITY,OUR DENTIST,REGULATED ACTIVITY(S),,False 567929,38 SUMMER ST,MEDWAY,DEP REGULATED FACILITY,CUMBERLAND FARMS 2506,REGULATED ACTIVITY(S),042843586,True -567936,551 SOUTH WASHINGTON ST,NORTH ATTLEBOROUGH,DEP REGULATED FACILITY,IMPERIAL SUBARU,REGULATED ACTIVITY(S),471151946,True +567936,551 SOUTH WASHINGTON ST,NORTH ATTLEBOROUGH,DEP REGULATED FACILITY,PATRIOT SUBARU OF NORTH ATTLEBORO,REGULATED ACTIVITY(S),471151946,True 567943,137 BARTLETT RD,PLYMOUTH,DEP REGULATED FACILITY,TIDMARSH FARMS AND BEAVER DAM BROOK,REGULATED ACTIVITY(S),,True 567945,749 HEAD OF THE BAY RD,BOURNE,DEP REGULATED FACILITY,HIDEAWAY VILLAGE CONDOMINIUM ASSOCIATION,REGULATED ACTIVITY(S),,True 567993,181 CEDAR ST,MARLBOROUGH,DEP REGULATED FACILITY,PARTNERS PHARMACY OF MA,REGULATED ACTIVITY(S),,True @@ -47913,7 +47909,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 570193,199 EDGEWATER DR W,FALMOUTH,DEP REGULATED FACILITY,GAROFALO EUGENE,REGULATED ACTIVITY(S),,True 570197,802 ROCK ODUNDEE RD,DARTMOUTH,DEP REGULATED FACILITY,BRENNER & POPE JOEL & VICTORIA,REGULATED ACTIVITY(S),,True 570199,MERRIMACK ST/MULTIPLE LOCATIONS,HAVERHILL,DEP REGULATED FACILITY,HARBOR PLACE DEVELOPMENT PROJECT,REGULATED ACTIVITY(S),,True -570214,1111 SOUTHAMPTON RD,WESTFIELD,DEP REGULATED FACILITY,PPF WE 1111 SOUTHAMPTON ROAD LLC,REGULATED ACTIVITY(S),,True +570214,1111 SOUTHAMPTON RD,WESTFIELD,DEP REGULATED FACILITY,SCOTTS CO LLC,REGULATED ACTIVITY(S),042801160,False 570216,CONNECTICUT RIV,HOLYOKE,DEP REGULATED FACILITY,HOLYOKE DAM & HADLEY FALLS STATION,REGULATED ACTIVITY(S),,True 570218,447 ESSEX ST,LAWRENCE,DEP REGULATED FACILITY,SEC INDUSTRIAL & COMMERCIAL SERVICES INC,REGULATED ACTIVITY(S),273003355,True 570219,68 GOLD ST,AGAWAM,DEP REGULATED FACILITY,AVISTA PHARMA SOLUTIONS INC,REGULATED ACTIVITY(S),452647094,True @@ -47954,7 +47950,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 570660,17 LAURELWOOD RD,STERLING,DEP REGULATED FACILITY,STERLING ANIMAL SHELTER,REGULATED ACTIVITY(S),043236868,True 570673,17 CHAPPAQUIDDICK RD,EDGARTOWN,DEP REGULATED FACILITY,17 CHAPPAQUIDDICK ROAD NOMINEE TRUST,REGULATED ACTIVITY(S),,True 570705,145 CONGRESS ST,AMESBURY,DEP REGULATED FACILITY,B&M AUTO,REGULATED ACTIVITY(S),,False -570711,99 MARGIN ST,SALEM,DEP REGULATED FACILITY,KEOLIS COMMUTER SERVICES,REGULATED ACTIVITY(S),001112370,True 570758,430 NAHANT RD,NAHANT,DEP REGULATED FACILITY,NORTHEASTERN UNIVERSITY,REGULATED ACTIVITY(S),,True 570775,75 TAYLOR ST,BOSTON,DEP REGULATED FACILITY,SHAFFER PAPER SITE,REGULATED ACTIVITY(S),,True 570841,390 AIRPORT RD,FALL RIVER,DEP REGULATED FACILITY,SWIMEX INC,REGULATED ACTIVITY(S),270027871,True @@ -48293,7 +48288,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 576415,481 WILDWOOD ST,WOBURN,DEP REGULATED FACILITY,"TIGHE WAREHOUSING & DISTRIBUTION, INC.",REGULATED ACTIVITY(S),,True 576417,36 CABOT RD,WOBURN,DEP REGULATED FACILITY,"SHOEBUY.COM, INC.",REGULATED ACTIVITY(S),,True 576419,ASSEMBLY ROW 395 ARTISAN WAY,SOMERVILLE,DEP REGULATED FACILITY,"AMERICAN MULTI-CINIMA, INC.",REGULATED ACTIVITY(S),,True -576424,139 ENDICOTT ST,DANVERS,DEP REGULATED FACILITY,SAVERS 1139,REGULATED ACTIVITY(S),,True 576441,1000 TECHNOLOGY CENTER DR,STOUGHTON,DEP REGULATED FACILITY,AMAZON,REGULATED ACTIVITY(S),820544687,True 576454,4 ONSET AVE,WAREHAM,DEP REGULATED FACILITY,RIZOLI MARK & CHRISTINE,REGULATED ACTIVITY(S),,True 576458,7 WENDY WAY,DENNIS,DEP REGULATED FACILITY,MACDONALD RUTH,REGULATED ACTIVITY(S),,True @@ -49351,7 +49345,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 589168,55 ENDICOTT ST,NORWOOD,DEP REGULATED FACILITY,APPLIED PLASTICS CO INC,REGULATED ACTIVITY(S),042311134,True 589170,18 PORT WAY,DENNIS,DEP REGULATED FACILITY,SPECA RESIDENCE,REGULATED ACTIVITY(S),,True 589173,37 MASON ST,WORCESTER,DEP REGULATED FACILITY,C&E AUTO BODY INC,REGULATED ACTIVITY(S),000807821,False -589189,30 ROBERT WEST BOYDEN RD,TAUNTON,DEP REGULATED FACILITY,FOUNDERS SCIENCE GROUP LLC,REGULATED ACTIVITY(S),,True 589201,655 PAGE BLVD,SPRINGFIELD,DEP REGULATED FACILITY,CRRC MA CORP,REGULATED ACTIVITY(S),,True 589206,33 NORTH NECK RD,EDGARTOWN,DEP REGULATED FACILITY,WILLIAM C FYNBO CAMILLE B FYNBO MARKS,REGULATED ACTIVITY(S),,True 589210,534 BOSTON POST RD,SUDBURY,DEP REGULATED FACILITY,MEADOW WALK SUDBURY,REGULATED ACTIVITY(S),,True @@ -49723,7 +49716,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 593947,10 NORTH POINT BLVD,CAMBRIDGE,DEP REGULATED FACILITY,EF EDUCATION FIRST EXPANSION EF-III,REGULATED ACTIVITY(S),,True 593952,1 PADDOCK LANE,BOXBOROUGH,PUBLIC WATER SUPPLY SYSTEM,PADDOCK ESTATES,WATER SUPPLY/DRINKING WATER,2037036,True 593953,16 PENNSYLVANIA AVE,OAK BLUFFS,DEP REGULATED FACILITY,TOWN OF OAK BLUFFS LANDFILL,REGULATED ACTIVITY(S),,True -593987,955 PEARL ST,BROCKTON,DEP REGULATED FACILITY,COPELAND CHEVROLET,REGULATED ACTIVITY(S),463318674,True 594017,130 RIVERDALE ST,NORTHBRIDGE,DEP REGULATED FACILITY,RIVERDALE POWER AND ELECTRIC,REGULATED ACTIVITY(S),,True 594027,30 PECK ROAD,WALES,PUBLIC WATER SUPPLY SYSTEM,TUPPER HILL NORCROSS WILDLIFE SANCTUARY,WATER SUPPLY/DRINKING WATER,1306009,True 594035,21B VALLEY RD,CONCORD,DEP REGULATED FACILITY,KALMIA DWOODS CORPORATION,REGULATED ACTIVITY(S),,True @@ -50214,7 +50206,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 599934,29 TRINITY PL,MASHPEE,DEP REGULATED FACILITY,"COTUIT SOLA, LLC",REGULATED ACTIVITY(S),,True 599945,500 WEST STREET,BARRE,PUBLIC WATER SUPPLY SYSTEM,CARTER STEVENS FARM/STONE COW BREWERY,WATER SUPPLY/DRINKING WATER,2021007,True 599947,UNION ST,HOLDEN,DEP REGULATED FACILITY,GREENWOOD II RESIDENTIAL SUBDIVISION,REGULATED ACTIVITY(S),,True -599949,363 BISHOPS HWY,KINGSTON,DEP REGULATED FACILITY,LONGVIEW BEHAVIORAL HEALTH LLC,REGULATED ACTIVITY(S),,True +599949,363 BISHOPS HWY,KINGSTON,DEP REGULATED FACILITY,SISTERS OF DIVINE PROVIDENCE,REGULATED ACTIVITY(S),,True 599971,137 COVE RD,DENNIS,DEP REGULATED FACILITY,DOREEN COSTANTINO,REGULATED ACTIVITY(S),,True 599982,13 TIBBETTS AVE,DANVERS,DEP REGULATED FACILITY,ROBERT & MARY MARCHAND,REGULATED ACTIVITY(S),,True 600007,COMMERCE RD,MARSHFIELD,DEP REGULATED FACILITY,MODERA MARSHFIELD WWTF,REGULATED ACTIVITY(S),833745094,True @@ -50409,7 +50401,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 602793,213-299 OLD MILL RD,MASHPEE,DEP REGULATED FACILITY,TOWN OF MASHPEE,REGULATED ACTIVITY(S),,True 602795,82 SALISBURY ST,WORCESTER,DEP REGULATED FACILITY,INSTITUTE PARK WOODLAND TRAIL PROJECT,REGULATED ACTIVITY(S),,True 602805,140 MAIN ST,DENNIS,DEP REGULATED FACILITY,WHITES BASS RIVER MARINE LLC,REGULATED ACTIVITY(S),,True -602814,310 KENNETH WELCH DR,LAKEVILLE,DEP REGULATED FACILITY,COLD STORAGE SOLUTIONS INC,REGULATED ACTIVITY(S),452799317,False +602814,310 KENNETH WELCH DR,LAKEVILLE,DEP REGULATED FACILITY,COLD STORAGE SOLUTIONS INC,REGULATED ACTIVITY(S),452799317,True 602826,1 MODERNA WAY,NORWOOD,DEP REGULATED FACILITY,MODERNA THERAPEUTICS INC,REGULATED ACTIVITY(S),270226313,True 602844,441 LAFAYETTE ST,SALEM,DEP REGULATED FACILITY,MARK MAZUZAN,REGULATED ACTIVITY(S),,True 602856,200 INNER BELT RD STE 325,SOMERVILLE,DEP REGULATED FACILITY,MBTA GREEN LINE EXTENSION PROJECT,REGULATED ACTIVITY(S),,True @@ -50833,7 +50825,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 609291,36 BAXENDALE RD,BOURNE,DEP REGULATED FACILITY,N & N COTTAGE LLC,REGULATED ACTIVITY(S),,True 609293,11 RIVER PINE CIR,HARWICH,DEP REGULATED FACILITY,CHRISTOPHER J AND LISA M BARTON,REGULATED ACTIVITY(S),,True 609308,66 BRALEY RD,FREETOWN,DEP REGULATED FACILITY,JM EQUIPMENT CO INC,REGULATED ACTIVITY(S),,True -609339,221 LEYDEN RD,GREENFIELD,DEP REGULATED FACILITY,SNOW AND SONS INC TREE AND LANDSCAPING,REGULATED ACTIVITY(S),,True +609339,221 LEYDEN RD,GREENFIELD,DEP REGULATED FACILITY,SNOW AND SONS INC TREE AND LANDSCAPING,REGULATED ACTIVITY(S),,False 609371,61 CENTRAL ST,WELLESLEY,DEP REGULATED FACILITY,CHEESE SHOP THE,REGULATED ACTIVITY(S),,True 609375,99 WEST ST STE L,MEDFIELD,DEP REGULATED FACILITY,REHAB MARKETING,REGULATED ACTIVITY(S),,True 609379,979 MAIN ST,MILLIS,DEP REGULATED FACILITY,LUMPYS LIQUORS,REGULATED ACTIVITY(S),,True @@ -51189,7 +51181,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 614018,8 ESSEX CENTER DR,PEABODY,DEP REGULATED FACILITY,PEABODY AND LANE CORPORATION,REGULATED ACTIVITY(S),,True 614020,88 FORT ST,FAIRHAVEN,DEP REGULATED FACILITY,TERJE TONNESSEN REVOCABLE TRUST 2015,REGULATED ACTIVITY(S),,True 614056,99 BUENA VIST STREET,AYER,DEP REGULATED FACILITY,DEVENS MASSDEVELOPMENT WATER DIVISION,REGULATED ACTIVITY(S),,True -614092,31 HAYWARD STREET,FRANKLIN,DEP REGULATED FACILITY,BANNER ENVIRONMENTAL SERVICES INC,REGULATED ACTIVITY(S),,True 614103,NORTH WASHINGTON ST,BOSTON,DEP REGULATED FACILITY,NORTH WASHINGTON STREET BRIDGE,REGULATED ACTIVITY(S),,True 614128,LAKE DAM RD,SAUGUS,DEP REGULATED FACILITY,SPRING POND DAM,REGULATED ACTIVITY(S),,True 614130,290 ACAPESKET RD,FALMOUTH,DEP REGULATED FACILITY,GERARD T & MARGARET T ROBINSON,REGULATED ACTIVITY(S),,True @@ -51381,7 +51372,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 616042,585 THIRD ST,CAMBRIDGE,DEP REGULATED FACILITY,KENDALL SQUARE - PARCEL C,REGULATED ACTIVITY(S),,True 616065,3385 SOUTH ATHOL RD,ATHOL,DEP REGULATED FACILITY,BLAKE PROPERTY,REGULATED ACTIVITY(S),,True 616093,399 RIVER ROAD,HUDSON,DEP REGULATED FACILITY,D3SYNERGY GRAPHICS LLC,REGULATED ACTIVITY(S),270356864,True -616106,33 HAYDEN AVE,LEXINGTON,DEP REGULATED FACILITY,NOVO NORDISK US R&D,REGULATED ACTIVITY(S),,True +616106,33 HAYDEN AVE,LEXINGTON,DEP REGULATED FACILITY,DICERNA PHARMACEUTICALS INC,REGULATED ACTIVITY(S),,True 616136,21 ELISSA AVE,WAYLAND,DEP REGULATED FACILITY,SIMPLY DENTAL AND ORTHODONTICS,REGULATED ACTIVITY(S),,True 616142,50 WHALON ST,FITCHBURG,DEP REGULATED FACILITY,SIMPLY ORTHODONTICS & PEDIATRIC DENTIST,REGULATED ACTIVITY(S),,True 616144,35 SCALLOP RD,YARMOUTH,DEP REGULATED FACILITY,35 SCALLOP ROAD NOMINEE TRUST,REGULATED ACTIVITY(S),,True @@ -51977,7 +51968,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 627041,AMOS CASE RD,BLANDFORD,DEP REGULATED FACILITY,AMOS CASE ROAD DUMPING GROUND,REGULATED ACTIVITY(S),,True 627050,704 WASHINGTON STREET,PEMBROKE,DEP REGULATED FACILITY,"NEW ENGLAND SHORELINES COMPANIES, INC.",REGULATED ACTIVITY(S),,True 627072,PLAIN STREET,BRAINTREE,DEP REGULATED FACILITY,HOLLINGSWORTH POND LLC,REGULATED ACTIVITY(S),,True -627107,95 AUBUCHON DR,WESTMINSTER,DEP REGULATED FACILITY,WALMART REGIONAL WAREHOUSE 10617,REGULATED ACTIVITY(S),,True 627137,"7651 ESTERS BLVD, STE 200",,DEP REGULATED FACILITY,LIQUID ENVIRONMENTAL SOLUTIONS,REGULATED ACTIVITY(S),161634035,True 627187,1 LYNN ROTARY,LYNN,DEP REGULATED FACILITY,1 LYNN ROTARY,REGULATED ACTIVITY(S),,True 627190,595 NORTH AVENUE,WAKEFIELD,DEP REGULATED FACILITY,THE LAKESIDE INN,REGULATED ACTIVITY(S),,True @@ -52334,7 +52324,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 635441,30 FAULKNER ST,AYER,DEP REGULATED FACILITY,ACE LON,REGULATED ACTIVITY(S),,False 635443,20 AUTHORITY DR,FITCHBURG,DEP REGULATED FACILITY,ETHOS CANNABIS,REGULATED ACTIVITY(S),,True 635449,85 HICKS AVE,MEDFORD,DEP REGULATED FACILITY,OPT INDUSTRIES,REGULATED ACTIVITY(S),,True -635454,316-318 NORTHERN AVE,BOSTON,DEP REGULATED FACILITY,VERTEX PHARMACEUTICALS INCORPORATED,REGULATED ACTIVITY(S),043039129,True 635465,5 CHESTNUT ST,LEOMINSTER,DEP REGULATED FACILITY,LEOMINSTER ICE COMPANY INC,REGULATED ACTIVITY(S),93 3852142,True 635486,65 MATTAPOISETT NECK ROAD,MATTAPOISETT,DEP REGULATED FACILITY,MARK D. & JEANNE M. CONNON,REGULATED ACTIVITY(S),,True 635621,190 BEACH ROAD,TISBURY,DEP REGULATED FACILITY,TISBURY MARINE TERMINAL LLC,REGULATED ACTIVITY(S),,True @@ -52365,7 +52354,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 636444,32 OCEAN VIEW AVENUE,EDGARTOWN,DEP REGULATED FACILITY,32 OCEAN VIEW AVENUE REALTY TRUST,REGULATED ACTIVITY(S),,True 636466,104 GOVERNOR DUKAKIS DRIVE,ORANGE,DEP REGULATED FACILITY,"J&L ENTERPRISES, INC.",REGULATED ACTIVITY(S),,True 636468,199 CEDAR TREE NECK ROAD,BARNSTABLE,DEP REGULATED FACILITY,E & E REAL ESTATE TRUST,REGULATED ACTIVITY(S),,True -636501,139 WORCESTER PROVIDENCE TURNPIKE,MILLBURY,DEP REGULATED FACILITY,DIRENZO TOWING & RECOVERY INC,REGULATED ACTIVITY(S),,True 636520,184 BALSAM STREET,FAIRHAVEN,DEP REGULATED FACILITY,ROBERT & KAREN SULLIVAN,REGULATED ACTIVITY(S),,True 636667,1177 STAFFORD ST,OXFORD,DEP REGULATED FACILITY,HYDRO CUTTER INC,REGULATED ACTIVITY(S),,True 636689,4 RIVER STREET,SCITUATE,DEP REGULATED FACILITY,SCITUATE FIRE STATION #4,REGULATED ACTIVITY(S),,True @@ -52381,7 +52369,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 637181,0 WENDELL ROAD,SHUTESBURY,DEP REGULATED FACILITY,KOLASINSKI DUMP,REGULATED ACTIVITY(S),,True 637199,0 JENNISON ROAD,SHUTESBURY,DEP REGULATED FACILITY,JENNISON ROAD DUMP,REGULATED ACTIVITY(S),,True 637225,1615 NORTH MAIN ST.,PALMER,DEP REGULATED FACILITY,"PALMER PACKAGE STORE, INC.",REGULATED ACTIVITY(S),,True -637280,1100 INNOVATION WAY,FREETOWN,DEP REGULATED FACILITY,CANNATECH MEDICINALS INNOVATION,REGULATED ACTIVITY(S),,True 637384,59 ROSEDALE ROAD,WATERTOWN,DEP REGULATED FACILITY,"CAREFUL MOVERS, LLC",REGULATED ACTIVITY(S),,True 637414,286 WEBSTER STREET,DOUGLAS,DEP REGULATED FACILITY,FLYING GOOSE LLC,REGULATED ACTIVITY(S),001423713,True 637431,45 GREEN ST,HOLLISTON,DEP REGULATED FACILITY,MINGLEWOOD DEVELOPMENT LLC PROPERTY,REGULATED ACTIVITY(S),,True @@ -52506,7 +52493,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 641520,555 BELCHERTOWN ROAD,AMHERST,DEP REGULATED FACILITY,RIVERSIDE ORGANICS,REGULATED ACTIVITY(S),,True 641522,5 WINTHROP ST,MEDWAY,DEP REGULATED FACILITY,SILVEIRA PROPERTY,REGULATED ACTIVITY(S),,True 641555,35 COMMERCE WAY,UXBRIDGE,DEP REGULATED FACILITY,UNILOCK NEW YORK INC BOSTON DIVISION,REGULATED ACTIVITY(S),,True -641577,100 SALEM TURNPIKE,SAUGUS,DEP REGULATED FACILITY,SAUGUS WHEELABRATOR,REGULATED ACTIVITY(S),,False +641577,100 SALEM TURNPIKE,SAUGUS,DEP REGULATED FACILITY,SAUGUS WHEELABRATOR AT 100 SALEM TURNPIK,REGULATED ACTIVITY(S),,True 641618,2 SHORT BEACH ROAD,BARNSTABLE,DEP REGULATED FACILITY,NEW ENGLAND WIND 1 CONNECTOR,REGULATED ACTIVITY(S),,True 641633,22 CUDWORTH RD,WEBSTER,DEP REGULATED FACILITY,C & R REALTY HOLDINGS LLC PROPERTY,REGULATED ACTIVITY(S),,True 641641,5 WEST MAIN STREET,ERVING,PUBLIC WATER SUPPLY SYSTEM,FLIS MARKET,WATER SUPPLY/DRINKING WATER,1091016,True @@ -52574,7 +52561,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 642834,2400 MARKET ST.,,DEP REGULATED FACILITY,"ARAMARK SERVICES, INC.",REGULATED ACTIVITY(S),,True 642837,1174 S WASHINGTON ST,,DEP REGULATED FACILITY,ATTLEBORO DENTAL GROUP,REGULATED ACTIVITY(S),873981729,True 642855,333 NORTHWEST AVE,,DEP REGULATED FACILITY,"EMPIRE TODAY, LLC",REGULATED ACTIVITY(S),,True -642898,36 SOUTH COMMON ST,LYNN,DEP REGULATED FACILITY,MVM ARMORY GARAGE,REGULATED ACTIVITY(S),,True 642903,114 MAIN ST,BLACKSTONE,DEP REGULATED FACILITY,RICHDALES FOOD SHOPS,REGULATED ACTIVITY(S),,True 643079,79 RIVER ROAD,UXBRIDGE,PUBLIC WATER SUPPLY SYSTEM,BLACKSTONE VALLEY CANNABIS,WATER SUPPLY/DRINKING WATER,2304018,True 643101,12 FIRST STREET,SALEM,DEP REGULATED FACILITY,PEQUOT HIGHLANDS,REGULATED ACTIVITY(S),,True @@ -52632,7 +52618,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 644271,DALTON ST,BOSTON,DEP REGULATED FACILITY,DALTON STREET BRIDGE,REGULATED ACTIVITY(S),,True 644276,449 EAST STREET,EASTHAMPTON,DEP REGULATED FACILITY,MICHAEL TOMASZEWSKI,REGULATED ACTIVITY(S),,True 644277,7 MCKAY AVENUE,WINCHESTER,DEP REGULATED FACILITY,"GENTLE GIANT MOVING CO., INC.",REGULATED ACTIVITY(S),,True -644368,1639 OCEAN ST,MARSHFIELD,DEP REGULATED FACILITY,MARSHFIELD POLICE DEPARTMENT,REGULATED ACTIVITY(S),,False +644368,1639 OCEAN ST,MARSHFIELD,DEP REGULATED FACILITY,MARSHFIELD POLICE DEPARTMENT,REGULATED ACTIVITY(S),,True 644406,203 CABOT ST,LOWELL,DEP REGULATED FACILITY,EL JEFE TACO BAR LLC,REGULATED ACTIVITY(S),,True 644408,240 NASHUA RD,BILLERICA,DEP REGULATED FACILITY,WEST BILLERICA LIQUORS INC,REGULATED ACTIVITY(S),,True 644422,103 MAIN ST,WESTFORD,DEP REGULATED FACILITY,WESTFORD HOUSE OF PIZZA,REGULATED ACTIVITY(S),,True @@ -52776,7 +52762,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 650768,930 AMERICAN LEGION HIGHWAY,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,SILVERBACK CROSSING,WATER SUPPLY/DRINKING WATER,4334096,True 650788,37 APPLETON ST,HOLYOKE,DEP REGULATED FACILITY,37 APPLETON STREET LLC,REGULATED ACTIVITY(S),,True 650829,40 LOWELL RD,SALEM,DEP REGULATED FACILITY,K-TOWN DISPOSAL LLC,REGULATED ACTIVITY(S),810789323,False -650853,10 PULLMAN ST,WORCESTER,DEP REGULATED FACILITY,WORCESTER PULLMAN STATION,REGULATED ACTIVITY(S),,True 650892,21 SHOEMAKER LANE,UPTON,PUBLIC WATER SUPPLY SYSTEM,COBBLERS CREEK CONDOMINIUMS,WATER SUPPLY/DRINKING WATER,2303005,True 650934,805 MIDDLESEX TPKE,BILLERICA,DEP REGULATED FACILITY,FACTORIAL INC,REGULATED ACTIVITY(S),640277,True 651019,1844 COMMONWEALTH AVE.,NEWTON,DEP REGULATED FACILITY,LASELL UNIVERSITY,REGULATED ACTIVITY(S),,True @@ -53162,7 +53147,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 664610,12 FIRST STREET,SALEM,PUBLIC WATER SUPPLY SYSTEM,PEQUOT HIGHLANDS,WATER SUPPLY/DRINKING WATER,3258001,True 664613,265 MILLBROOK DRIVE,EAST LONGMEADOW,DEP REGULATED FACILITY,QUERCUS PROPERTIES LLC,REGULATED ACTIVITY(S),,True 664765,260 COUNTY ROAD,WAREHAM,DEP REGULATED FACILITY,COUNTY ROAD RECYCLING,REGULATED ACTIVITY(S),,True -664773,1 BUCKLEY DR,AUBURN,DEP REGULATED FACILITY,AUBURN MOTEL,REGULATED ACTIVITY(S),,True 664775,132 SOUTH MAIN STREET,BERKLEY,PUBLIC WATER SUPPLY SYSTEM,ANCHOR ACADEMY BERKLEY,WATER SUPPLY/DRINKING WATER,4027007,True 664984,213 SUTTON ST,NORTH ANDOVER,DEP REGULATED FACILITY,FEMME WORKS SOLUTIONS LLC,REGULATED ACTIVITY(S),,True 665007,550 BOWIE ST.,,DEP REGULATED FACILITY,"WHOLE FOODS MARKET GROUP, INC.",REGULATED ACTIVITY(S),,True @@ -53319,9 +53303,9 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 668432,264 AYER ROAD,HARVARD,PUBLIC WATER SUPPLY SYSTEM,THREE SEASONS LANDSCAPE,WATER SUPPLY/DRINKING WATER,2125028,True 668439,237 WEST CENTER STREET,WEST BRIDGEWATER,PUBLIC WATER SUPPLY SYSTEM,ROCKY MOUNTAIN VU @ HOCKOMOCK PLAZA,WATER SUPPLY/DRINKING WATER,4322006,True 668444,30 FORBES RD,BRAINTREE,DEP REGULATED FACILITY,SOUTH SHORE PLACE,REGULATED ACTIVITY(S),,True +668456,235 OLD CONNECTICUT PATH,FRAMINGHAM,DEP REGULATED FACILITY,LIQUOR WORLD,REGULATED ACTIVITY(S),,True 668459,9 MERCER RD,NATICK,DEP REGULATED FACILITY,SUPERLOGICS INCORPORATED,REGULATED ACTIVITY(S),,True 668483,115 BARNES HILL RD,BERLIN,DEP REGULATED FACILITY,RAINVILLE PROPERTY,REGULATED ACTIVITY(S),,True -668502,615 INNOVATION WAY,FALL RIVER,DEP REGULATED FACILITY,ICE CUBE COLD STORAGE,REGULATED ACTIVITY(S),,True 668514,340 BALLARDVALE ST,ANDOVER,DEP REGULATED FACILITY,MARKET BASKET DISTRIBUTION CENTER,REGULATED ACTIVITY(S),,True 668521,1 TOBIAS BOLAND WAY,WORCESTER,DEP REGULATED FACILITY,WALMART SUPERCENTER,REGULATED ACTIVITY(S),,True 668543,84 WORCESTER RD,FRAMINGHAM,DEP REGULATED FACILITY,THE FRESH MARKET,REGULATED ACTIVITY(S),,True @@ -53354,8 +53338,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 669236,133 FAUNCE CORNER ROAD,DARTMOUTH,DEP REGULATED FACILITY,PANAGAKOS DEVELOPMENT,REGULATED ACTIVITY(S),,True 669296,8 GARDEN CT,SOMERVILLE,DEP REGULATED FACILITY,REDBONES CATERING,REGULATED ACTIVITY(S),,True 669300,67 MOORELAND AVE,LEOMINSTER,DEP REGULATED FACILITY,BUTLER DERRICK P ETUX,REGULATED ACTIVITY(S),,True -669345,6 FIFTH ST,PEABODY,DEP REGULATED FACILITY,SPECTER AEROSPACE INCORPORATED,REGULATED ACTIVITY(S),,True -669348,34 JAKES PATH,MIDDLEBOROUGH,PUBLIC WATER SUPPLY SYSTEM,JAKES PATH PWS,WATER SUPPLY/DRINKING WATER,4182018,True +669348,2 JAKES PATH,MIDDLEBOROUGH,PUBLIC WATER SUPPLY SYSTEM,JAKES PATH PWS,WATER SUPPLY/DRINKING WATER,4182018,True 669360,25 ROSARY LANE,BARNSTABLE,DEP REGULATED FACILITY,EJ JAXTIMER BUILDER INC.,REGULATED ACTIVITY(S),,True 669376,97 COURT ST,NEWTON,DEP REGULATED FACILITY,GT HOME SERVICE INC,REGULATED ACTIVITY(S),,True 669407,59 JUNGLE RD,LEOMINSTER,DEP REGULATED FACILITY,ONYX CORPORATION,REGULATED ACTIVITY(S),,True @@ -53454,7 +53437,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 671821,96 ARSENAL YARDS BLVD,WATERTOWN,DEP REGULATED FACILITY,ROCHE BROS. SUPERMARKET,REGULATED ACTIVITY(S),,True 671874,100 BOWLES ROAD,AGAWAM,DEP REGULATED FACILITY,KITTREDGE EQUIPMENT,REGULATED ACTIVITY(S),,True 671947,1800 HYDE PARK AVE.,BOSTON,PUBLIC WATER SUPPLY SYSTEM,ROCKY MOUNTAIN SPRING WATER VENDING,WATER SUPPLY/DRINKING WATER,3035022,True -671988,120 ELMGROVE PARK,ROCHESTER,DEP REGULATED FACILITY,NORTHSTAR DEMOLITION AND REMEDIATION INC,REGULATED ACTIVITY(S),,True 671998,237 HINCKLEY ROAD,BARNSTABLE,DEP REGULATED FACILITY,"GARBAGE GONE, INC.",REGULATED ACTIVITY(S),,True 672006,200 WALNUT ST.,SAUGUS,DEP REGULATED FACILITY,EASTERN PROPERTY MANAGEMENT GROUP INC.,REGULATED ACTIVITY(S),,True 672027,1277 BROADWAY,SAUGUS,DEP REGULATED FACILITY,SIMON PROPERTY GROUP INC,REGULATED ACTIVITY(S),,True @@ -53485,10 +53467,12 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 672881,"150 PRESIDENTIAL WAY, STE. 220",WOBURN,DEP REGULATED FACILITY,EDGEMERE CROSSING RESIDENTIAL HOLDINGS,REGULATED ACTIVITY(S),,True 672882,55 FRANK B MURRAY ST,SPRINGFIELD,DEP REGULATED FACILITY,GREYHOUND LINES INC,REGULATED ACTIVITY(S),,True 672887,34 ROUTE 123,KINGSTON,DEP REGULATED FACILITY,ABS ENVIRONMENTAL LLC,REGULATED ACTIVITY(S),,True +673033,600 MARKET ST,LYNNFIELD,DEP REGULATED FACILITY,LEGAL SEA FOODS,REGULATED ACTIVITY(S),,True 673077,45 CAMPANELLI DR,WESTFIELD,DEP REGULATED FACILITY,LINEAGE FOODSERVICE SOLUTIONS,REGULATED ACTIVITY(S),,True 673086,355 BELMONT AVE,SPRINGFIELD,PUBLIC WATER SUPPLY SYSTEM,FOOD ZONE INTERNATIONAL SUPERMARKET,WATER SUPPLY/DRINKING WATER,1281004,True 673103,5 HARRINGTON ST,MENDON,DEP REGULATED FACILITY,MOOV DRIVE SCHOOL BOSTON INC,REGULATED ACTIVITY(S),,True 673108,40 RIVER PATH DRIVE,FRAMINGHAM,DEP REGULATED FACILITY,AVALON AT FRAMINGHAM,REGULATED ACTIVITY(S),,True +673110,10 KENWOOD CIRCLE,FRANKLIN,DEP REGULATED FACILITY,ASTRO INVESTMENTS,REGULATED ACTIVITY(S),,True 673113,67 KEMBLE ST,BOSTON,DEP REGULATED FACILITY,CITY FRESH FOODS INC,REGULATED ACTIVITY(S),,True 673119,4 BERRY ST,NORTH ANDOVER,DEP REGULATED FACILITY,BERRY FARMS,REGULATED ACTIVITY(S),,True 673133,79 POWERS RD,WESTFORD,DEP REGULATED FACILITY,NASHOBA VALLEY SKI AREA,REGULATED ACTIVITY(S),,True @@ -53498,24 +53482,10 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 673330,WALKUP DRIVE,WESTBOROUGH,DEP REGULATED FACILITY,WALKUP DRIVE,REGULATED ACTIVITY(S),,True 673390,104 LAMARTINE ST,WORCESTER,DEP REGULATED FACILITY,CENTURY LINEN & UNIFORM LLC,REGULATED ACTIVITY(S),,True 673548,20 COUNTY STREET,WALPOLE,PUBLIC WATER SUPPLY SYSTEM,WIMBLEDON TENNIS AND PICKLEBALL CLUB,WATER SUPPLY/DRINKING WATER,4307004,True -673605,"6800 OWENSMOUTH AVE., STE. 260",,DEP REGULATED FACILITY,"C&L AM, LLC",REGULATED ACTIVITY(S),,True 673608,24 3RD ST,PALMER,DEP REGULATED FACILITY,PRIME DISTRIBUTION SERVICES LLC,REGULATED ACTIVITY(S),,True -673664,671 COLD SPRING ROAD,WILLIAMSTOWN,PUBLIC WATER SUPPLY SYSTEM,WILLIAMSTOWN RURAL LAND FOUNDATION INC,WATER SUPPLY/DRINKING WATER,1341032,True +673664,671 COLD SPRINGS ROAD,WILLIAMSTOWN,PUBLIC WATER SUPPLY SYSTEM,WILLIAMSTOWN RURAL LAND FOUNDATION INC,WATER SUPPLY/DRINKING WATER,1341032,True 673691,34 CAMBRIDGE STREET,BURLINGTON,PUBLIC WATER SUPPLY SYSTEM,FRESHPURE WATERS @ MOMS BURLINGTON (VND),WATER SUPPLY/DRINKING WATER,3048001,True -673693,1 ENTERPRISE DR,BILLERICA,DEP REGULATED FACILITY,BOYD CORPORATION INC,REGULATED ACTIVITY(S),,True 673697,1314 WORCESTER STREET,NATICK,PUBLIC WATER SUPPLY SYSTEM,FRESHPURE WATER @ MOMS NATICK (VND),WATER SUPPLY/DRINKING WATER,3198004,True 673745,3 DUNDEE PARK,ANDOVER,DEP REGULATED FACILITY,HAZARDOUS PRO LLC,REGULATED ACTIVITY(S),,True 673747,151 BULLOCK ST,NEW BEDFORD,DEP REGULATED FACILITY,I.D.G. ENVIRONMENTAL SERVICES LLC,REGULATED ACTIVITY(S),,True -673763,35 CENTER ST,CHICOPEE,DEP REGULATED FACILITY,BLUE PARK MANAGEMENT LLC,REGULATED ACTIVITY(S),,True -673772,58 SAM WEST RD,SOUTHWICK,DEP REGULATED FACILITY,MASS USED AUTO PARTS LLC,REGULATED ACTIVITY(S),,True -673784,40 SAM WEST RD,SOUTHWICK,DEP REGULATED FACILITY,EASY SOLUTIONS LLC,REGULATED ACTIVITY(S),,True -673792,"1700 WEST PARK DRIVE, SUITE 300",WESTBOROUGH,DEP REGULATED FACILITY,WASTE MANAGEMENT OF MASSACHUSETTS,REGULATED ACTIVITY(S),,True -673796,217 SOUTH MAIN ST,ATTLEBORO,DEP REGULATED FACILITY,SEABRA FOODS,REGULATED ACTIVITY(S),,True -673798,2 PATRIOT PLACE,FOXBOROUGH,DEP REGULATED FACILITY,NPP DEVELOPMENT LLC,REGULATED ACTIVITY(S),,True -673832,33 BOYLSTON ST,NEWTON,DEP REGULATED FACILITY,MARKET STREET RETAIL SOUTH LLC,REGULATED ACTIVITY(S),,True -673869,240 VENTURA ST,LUDLOW,DEP REGULATED FACILITY,AMERICAN CONCRETE & ASPHALT INC,REGULATED ACTIVITY(S),,True -673951,422 RIVER ST,NORTH ADAMS,DEP REGULATED FACILITY,CENTRAL RADIO APPLIANCE WAREHOUSE,REGULATED ACTIVITY(S),,True -674007,2065 MAIN ROAD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,WESTPORT SEA FARMS,WATER SUPPLY/DRINKING WATER,4334098,True -674053,100 MAIN ST,AMESBURY,DEP REGULATED FACILITY,APEX ABATEMENT AND DEMOLITION LCC,REGULATED ACTIVITY(S),,True -674170,564 JOHN FITCH HWY,FITCHBURG,DEP REGULATED FACILITY,MEINEKE CAR CARE CENTER 2927,REGULATED ACTIVITY(S),,True 999999,,,RELEASE,WSC PHONE RECORDS,WASTE SITE CLEANUP,,True diff --git a/docs/data/EEADP_facility_sample.csv b/docs/data/EEADP_facility_sample.csv index 9be1b3d8..865f755d 100644 --- a/docs/data/EEADP_facility_sample.csv +++ b/docs/data/EEADP_facility_sample.csv @@ -1,11 +1,11 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active -393497,21 DOWD RD,MONTEREY,DEP REGULATED FACILITY,EDELSTEIN PATRICIA,REGULATED ACTIVITY(S),,True -399571,45 SHOREWOOD DR,FALMOUTH,DEP REGULATED FACILITY,HURLEY PAUL AND CHRISTINE,REGULATED ACTIVITY(S),,True -461665,108 SUNNY HILL RD,LUNENBURG,DEP REGULATED FACILITY,108 SUNNY HILL RD,REGULATED ACTIVITY(S),,True -671695,139 HILLCREST RD,MARSHFIELD,DEP REGULATED FACILITY,139 HILLCREST ROAD MARSHFIELD - RESIDENT,REGULATED ACTIVITY(S),,True -322961,14 EAST MAIN ST,YARMOUTH,DEP REGULATED FACILITY,RACING MART,REGULATED ACTIVITY(S),000865222,True -284544,50 EAST MILL ST,PITTSFIELD,DEP REGULATED FACILITY,HARRIS STREET CORP,REGULATED ACTIVITY(S),,True -291810,105 FREMONT ST,WORCESTER,DEP REGULATED FACILITY,AABEC,REGULATED ACTIVITY(S),,True -130385,YEMMA RD,GROVELAND,DEP REGULATED FACILITY,AGGREGATE INDUSTRIES NORTHEAST REGION,REGULATED ACTIVITY(S),042079391,True -339181,165 NOBSCOT RD,SUDBURY,DEP REGULATED FACILITY,SPRINGHOUSE POND,REGULATED ACTIVITY(S),,True -337323,MAPLE MEADOWS LN,AGAWAM,DEP REGULATED FACILITY,SILVER BROOK ESTATES SEWER EXTENSION,REGULATED ACTIVITY(S),,True +539464,205 PLYMOUTH ST,HALIFAX,DEP REGULATED FACILITY,JOHNSON ARTHUR,REGULATED ACTIVITY(S),,True +340233,90 STODGEMEADOW RD,ASHBURNHAM,DEP REGULATED FACILITY,90 STODGEMEADOW RD,REGULATED ACTIVITY(S),,True +132305,24 SUMMER ST,HINGHAM,DEP REGULATED FACILITY,MOBIL OIL A & M MOBIL SERVICE,REGULATED ACTIVITY(S),023526722,False +324876,27 PROCTOR ST,MANCHESTER,DEP REGULATED FACILITY,COMB MICHAEL,REGULATED ACTIVITY(S),,True +307840,OAK TREE LN,REVERE,DEP REGULATED FACILITY,STONE VALLEY ESTATES,REGULATED ACTIVITY(S),,True +411624,COUNTY RD,OAK BLUFFS,DEP REGULATED FACILITY,COUNTY ROAD REALTY TRUST,REGULATED ACTIVITY(S),,True +387043,350 MEETINGHOUSE RD,MASHPEE,DEP REGULATED FACILITY,MASHPEE DPW,REGULATED ACTIVITY(S),,True +370733,TYRINGHAM RD,MONTEREY,DEP REGULATED FACILITY,SEMAYA EVELYN AND SAM,REGULATED ACTIVITY(S),,True +306273,500 FORTUNE BLVD,MILFORD,DEP REGULATED FACILITY,WILLIAMS DAVID,REGULATED ACTIVITY(S),,False +519027,15 BIRCH LN,IPSWICH,DEP REGULATED FACILITY,RAGOSTA RESIDENCE,REGULATED ACTIVITY(S),,True diff --git a/docs/data/EEADP_inspection.csv b/docs/data/EEADP_inspection.csv index d86130ec..c8120c98 100644 --- a/docs/data/EEADP_inspection.csv +++ b/docs/data/EEADP_inspection.csv @@ -84262,145 +84262,6 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 3999164,MEDFORD,REGULATED ACTIVITY(S),635449,OPT INDUSTRIES,Unannounced Multimedia Inspection,2026-04-23 3999214,MALDEN,WATER SUPPLY/DRINKING WATER,392669,"ROCKY MT. SPRING WATER CO., INC. (VND)",SANITARY SURVEY,2026-04-21 3999444,CARVER,WATER SUPPLY/DRINKING WATER,563648,PINE RIDGE CONDOMINIUMS AT SAMPSONS POND,SANITARY SURVEY,2026-04-22 +3999523,SUDBURY,REGULATED ACTIVITY(S),406464,SUDBURY GAS,Unannounced Single-Media Inspection,2026-04-27 3999527,BOSTON,REGULATED ACTIVITY(S),167305,MARINEMAX RUSSO BOSTON,Drive By Inspection,2026-04-21 3999549,GRAFTON,WATER SUPPLY/DRINKING WATER,5988,GRAFTON WATER DISTRICT,SANITARY SURVEY,2026-04-23 -3999523,SUDBURY,REGULATED ACTIVITY(S),406464,SUDBURY GAS,Unannounced Single-Media Inspection,2026-04-27 -4000074,FALL RIVER,REGULATED ACTIVITY(S),132278,BFI FALL RIVER LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-28 -4000091,DARTMOUTH,REGULATED ACTIVITY(S),172449,CRAPO HILL LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-28 -4000152,RAYNHAM,REGULATED ACTIVITY(S),376957,WASTE MANAGEMENT REGIONAL PROCESSING FAC,Solid Waste Inspect with Enforcement Potential,2026-04-28 -4000184,MILFORD,REGULATED ACTIVITY(S),364217,NITTO DENKO AVECIA INC,Unannounced Multimedia Inspection,2026-04-29 -4000312,MELROSE,REGULATED ACTIVITY(S),321110,WASTE MANAGEMENT OF MASSACHUSETTS INC,Solid Waste Inspect with Enforcement Potential,2026-04-29 -4000319,TEMPLETON,REGULATED ACTIVITY(S),398178,TEMPLETON AUTO,Unannounced Multimedia Inspection,2026-04-29 -4000325,FITCHBURG,REGULATED ACTIVITY(S),395523,HARVEY RECYCLING OF FITCHBURG LLC,Solid Waste Inspect with Enforcement Potential,2026-04-29 -4000327,LEOMINSTER,REGULATED ACTIVITY(S),301600,LEOMINSTER TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-04-29 -4000337,WINCHENDON,REGULATED ACTIVITY(S),173111,CJ MABARDY DEMOLITION LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-29 -4000339,LYNN,REGULATED ACTIVITY(S),172679,LYNN LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-29 -4000343,WESTBOROUGH,REGULATED ACTIVITY(S),191625,EL HARVEY & SONS INC,Solid Waste Inspect with Enforcement Potential,2026-04-28 -4000361,SEEKONK,WATER SUPPLY/DRINKING WATER,673309,FRESHPURE WATERS VENDING UNIT,SANITARY SURVEY,2026-04-29 -4000405,BOSTON,REGULATED ACTIVITY(S),557474,CENTRALIZED ORGANIC RECYCLING FACILITY,Solid Waste Inspect with Enforcement Potential,2026-04-29 -4000407,MIDDLETON,REGULATED ACTIVITY(S),613633,BIO-MED INNOVATIONS LLC,Solid Waste Inspect with Enforcement Potential,2026-04-29 -4000437,HUDSON,REGULATED ACTIVITY(S),254078,HUDSON STOW LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-30 -4000496,DARTMOUTH,WATER SUPPLY/DRINKING WATER,6211,DARTMOUTH WATER DIVISION,BWR/BRP Announced Inspection Related Activity,2026-04-29 -4000632,MAYNARD,REGULATED ACTIVITY(S),172710,MAYNARD LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-27 -4000634,CHARLTON,REGULATED ACTIVITY(S),172405,CHARLTON OLD TOWN DUMP,Solid Waste Visit Limited Enforcement Potential,2026-04-28 -4000744,LAWRENCE,REGULATED ACTIVITY(S),162774,JAYBIRD AND MAIS INC,Limited Inspect for Compliance Indicators/Field Presence,2026-04-28 -4000747,WRENTHAM,REGULATED ACTIVITY(S),193363,ATLANTIC SINTERED INC,Limited Inspect for Compliance Indicators/Field Presence,2026-04-29 -4000763,TAUNTON,REGULATED ACTIVITY(S),589189,FOUNDERS SCIENCE GROUP LLC,Announced Multimedia Inspection,2026-04-29 -4000840,MASHPEE,WATER SUPPLY/DRINKING WATER,7270,MASHPEE WATER DISTRICT,SANITARY SURVEY,2026-04-30 -4000785,WARE,REGULATED ACTIVITY(S),131241,KANZAKI SPECIALTY PAPERS INC,Unannounced Multimedia Inspection,2026-05-01 -4000793,DENNIS,REGULATED ACTIVITY(S),173242,S&J EXCO INC,Solid Waste Inspect with Enforcement Potential,2026-05-01 -4001022,PLYMOUTH,WATER SUPPLY/DRINKING WATER,671747,THE STORE AT SANDY POND,BWR/BRP Announced Inspection Related Activity,2026-05-01 -4001023,MANSFIELD,WATER SUPPLY/DRINKING WATER,6235,MANSFIELD WATER DIVISION,BWR/BRP Announced Inspection Related Activity,2026-05-04 -4001108,WAKEFIELD,REGULATED ACTIVITY(S),384769,JG MACLELLAN CONCRETE CO INC,Drive By Inspection,2026-05-04 -4001405,AYER,REGULATED ACTIVITY(S),159519,FBS TIRE RECYCLING INC,Solid Waste Inspect with Enforcement Potential,2026-05-05 -4001457,DANVERS,REGULATED ACTIVITY(S),132348,HIGH STREET SERVICE INC,Unannounced Single-Media Inspection,2026-05-05 -4001467,ERVING,REGULATED ACTIVITY(S),172505,ERVING PAPER MILLS SLUDGE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-05 -4001475,ERVING,REGULATED ACTIVITY(S),179468,ERVING PAPER SLUDGE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-05 -4001483,WHATELY,REGULATED ACTIVITY(S),173091,WHATELY LANDFILL,Solid Waste Visit Limited Enforcement Potential,2026-05-01 -4001664,HEATH,REGULATED ACTIVITY(S),172589,TRI TOWN LANDFILL,Solid Waste Visit Limited Enforcement Potential,2026-05-06 -4001666,GREENFIELD,REGULATED ACTIVITY(S),172555,GREENFIELD LANDFILL & TRANSFER STATION,Multiple Visits to Identify/Document a Problem,2026-05-06 -4001685,HOLLISTON,REGULATED ACTIVITY(S),333360,HOLLISTON TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-05 -4001717,TEMPLETON,REGULATED ACTIVITY(S),398178,TEMPLETON AUTO,Multiple Visits to Identify/Document a Problem,2026-05-06 -4001857,BOURNE,WATER SUPPLY/DRINKING WATER,392748,BARNSTABLE COUNTY JAIL,SANITARY SURVEY,2026-05-07 -4001968,WESTWOOD,REGULATED ACTIVITY(S),174735,GMG 7106,Unannounced Single-Media Inspection,2026-05-07 -4001976,MILLVILLE,REGULATED ACTIVITY(S),172745,MILLVILLE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-07 -4001988,CARVER,WATER SUPPLY/DRINKING WATER,555957,THE BERRY GUYS,TECHNICAL ASSISTANCE (NON-SPECIFIC),2026-05-07 -4002006,EAST LONGMEADOW,REGULATED ACTIVITY(S),360268,ALLEN STREET LANDFILL,Solid Waste Pre-Permit Limited Enforcement Potential,2026-05-07 -4002114,AGAWAM,REGULATED ACTIVITY(S),160790,F&G AGAWAM RECYCLING LLC,Solid Waste Inspect with Enforcement Potential,2026-05-07 -4002119,PITTSFIELD,REGULATED ACTIVITY(S),161191,CASELLA WASTE MANAGEMENT OF MA INC,Solid Waste Inspect with Enforcement Potential,2026-05-07 -4002136,PLYMOUTH,REGULATED ACTIVITY(S),132500,BETH ISRAEL DEACONESS HOSPITAL PLYMOUTH,Announced Multimedia Inspection,2026-05-06 -4002171,LYNNFIELD,WATER SUPPLY/DRINKING WATER,6127,LYNNFIELD CENTER WATER DISTRICT,SANITARY SURVEY PARTIAL,2026-05-05 -4002271,LAKEVILLE,WATER SUPPLY/DRINKING WATER,6670,POQUOY BROOK GOLF COURSE,SANITARY SURVEY,2026-05-06 -4002362,KINGSTON,WATER SUPPLY/DRINKING WATER,453523,SACRED HEART EARLY CHILDHOOD CENTER,SANITARY SURVEY,2026-05-08 -4002992,AVON,REGULATED ACTIVITY(S),133368,ACCU ROUNDS INC,Announced Multimedia Inspection,2026-05-08 -4003239,ADAMS,REGULATED ACTIVITY(S),130060,SPECIALTY MINERALS INC,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003271,ADAMS,REGULATED ACTIVITY(S),172270,ADAMS SOLID WASTE FACILITY,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003274,NORTH ADAMS,REGULATED ACTIVITY(S),132275,NORTH ADAMS LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003279,ADAMS,REGULATED ACTIVITY(S),161215,HOLLAND COMPANY INC,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003281,CHESHIRE,REGULATED ACTIVITY(S),274552,CHESHIRE SOLID WASTE FACILITY,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003284,CHESHIRE,REGULATED ACTIVITY(S),172411,CHESHIRE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003311,HOPKINTON,WATER SUPPLY/DRINKING WATER,7259,THE PRESERVE AT HOPKINTON CONDO,SANITARY SURVEY,2026-05-08 -4003400,COLRAIN,REGULATED ACTIVITY(S),172432,COLRAIN LANDFILL AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003403,COLRAIN,REGULATED ACTIVITY(S),172433,COLRAIN BRUSH LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003405,ASHFIELD,REGULATED ACTIVITY(S),173175,ASHFIELD LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003408,WILLIAMSBURG,REGULATED ACTIVITY(S),173098,WILLIAMSBURG LANDFILLS & TRANSFER STA,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003422,BOSTON,REGULATED ACTIVITY(S),281786,BOSTON SHIP REPAIR,Compliance Evaluation-Review of Compliance Data & Reports,2026-05-12 -4003532,BRIDGEWATER,REGULATED ACTIVITY(S),169033,BRIDGEWATER FARM SUPPLY,Solid Waste Inspect with Enforcement Potential,2026-05-12 -4003588,EVERETT,REGULATED ACTIVITY(S),389772,FERRY STREET GAS & SERVICE,Unannounced Single-Media Inspection,2026-05-12 -4003590,LAKEVILLE,WATER SUPPLY/DRINKING WATER,7205,FRATERNAL ORDER OF EAGLES,SANITARY SURVEY,2026-05-12 -4003591,LAKEVILLE,WATER SUPPLY/DRINKING WATER,6674,J AND J SEAFOOD,SANITARY SURVEY,2026-05-12 -4003603,NORTH ADAMS,REGULATED ACTIVITY(S),673951,CENTRAL RADIO APPLIANCE WAREHOUSE,Solid Waste Inspect with Enforcement Potential,2026-05-08 -4003671,MILLBURY,REGULATED ACTIVITY(S),636501,DIRENZO TOWING & RECOVERY INC,Drive By Inspection,2026-05-12 -4003711,AYER,REGULATED ACTIVITY(S),433187,DEVENS RECYCLING CENTER,Solid Waste Inspect with Enforcement Potential,2026-05-12 -4003804,CHARLTON,REGULATED ACTIVITY(S),182551,KARL STORZ ENDOVISION INC,Unannounced Multimedia Inspection,2026-05-13 -4003836,MARLBOROUGH,REGULATED ACTIVITY(S),130595,DUPONT ELECTRONIC MATERALS INTERNATIONAL,Unannounced Multimedia Inspection,2026-05-13 -4004082,NANTUCKET,WATER SUPPLY/DRINKING WATER,6249,WANNACOMET WATER COMPANY,Level 1 Assessment rTCR,2026-05-14 -4004087,WALES,REGULATED ACTIVITY(S),173024,WALES LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-14 -4004091,BRIMFIELD,REGULATED ACTIVITY(S),172377,BRIMFIELD LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-14 -4004095,PALMER,REGULATED ACTIVITY(S),172827,PALMER LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-14 -4004098,PALMER,REGULATED ACTIVITY(S),172828,PALMER STATE STREET LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-14 -4004111,OXFORD,REGULATED ACTIVITY(S),291781,OXFORD TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-12 -4004133,SPENCER,REGULATED ACTIVITY(S),173206,SPENCER LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-13 -4004135,SPENCER,REGULATED ACTIVITY(S),172954,SPENCER TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-13 -4004165,WESTFIELD,REGULATED ACTIVITY(S),175997,DIRATS LABORATORIES,Unannounced Multimedia Inspection,2026-05-13 -4004191,FAIRHAVEN,REGULATED ACTIVITY(S),168931,FAIRHAVEN GETTY,Unannounced Single-Media Inspection,2026-05-13 -4004198,RANDOLPH,REGULATED ACTIVITY(S),161703,FLEXCON INDUSTRIES,Announced Multimedia Inspection,2026-05-14 -4004217,BRAINTREE,REGULATED ACTIVITY(S),173140,BRAINTREE TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-14 -4004401,SAUGUS,REGULATED ACTIVITY(S),172914,WHEELABRATOR SAUGUS INC,Solid Waste Inspect with Enforcement Potential,2026-05-12 -4004403,SAUGUS,REGULATED ACTIVITY(S),172914,WHEELABRATOR SAUGUS INC,Solid Waste Inspect with Enforcement Potential,2026-05-14 -4004474,SPRINGFIELD,REGULATED ACTIVITY(S),596046,GEG CONSTRUCTION INC,Solid Waste Inspect with Enforcement Potential,2026-05-13 -4004541,PEABODY,WATER SUPPLY/DRINKING WATER,6152,PEABODY WATER DEPT.,SANITARY SURVEY PARTIAL,2026-05-12 -4004477,GREENFIELD,REGULATED ACTIVITY(S),172555,GREENFIELD LANDFILL & TRANSFER STATION,ReInspection,2026-05-15 -4004511,REHOBOTH,WATER SUPPLY/DRINKING WATER,6724,I ALIVE RESTAURANT,Level 1 Assessment rTCR,2026-05-15 -4004658,FAIRHAVEN,WATER SUPPLY/DRINKING WATER,6219,FAIRHAVEN WATER DEPT,SANITARY SURVEY,2026-05-18 -4004660,SALEM,REGULATED ACTIVITY(S),554591,SALEM HARBOR POWER DEVELOPMENT LP,Compliance Evaluation-Review of Compliance Data & Reports,2026-05-18 -4004694,PEABODY,WATER SUPPLY/DRINKING WATER,6152,PEABODY WATER DEPT.,SANITARY SURVEY,2026-05-18 -4004808,NORTH ANDOVER,REGULATED ACTIVITY(S),132771,WHEELABRATOR NORTH ANDOVER INC,Solid Waste Inspect with Enforcement Potential,2026-05-18 -4004810,MELROSE,REGULATED ACTIVITY(S),321110,WASTE MANAGEMENT OF MASSACHUSETTS INC,Solid Waste Inspect with Enforcement Potential,2026-05-18 -4004825,CAMBRIDGE,REGULATED ACTIVITY(S),335142,VERIZON NEW ENGLAND INC,Unannounced Single-Media Inspection,2026-05-19 -4004881,RUTLAND,REGULATED ACTIVITY(S),515785,RUTLAND AD 1 LLC,Solid Waste Inspect with Enforcement Potential,2026-05-19 -4004883,SPENCER,REGULATED ACTIVITY(S),591207,SPENCER AD 1 LLC,Solid Waste Inspect with Enforcement Potential,2026-05-19 -4004924,CAMBRIDGE,REGULATED ACTIVITY(S),317175,MASSACHUSETTS INSTITUTE OF TECHNOLOGY,Compliance Evaluation-Review of Compliance Data & Reports,2026-05-19 -4005132,MATTAPOISETT,WATER SUPPLY/DRINKING WATER,454412,MATTAPOISETT RIVER VALLEY W.D.,SANITARY SURVEY,2026-05-20 -4005167,WESTFIELD,REGULATED ACTIVITY(S),130989,SAVAGE ARMS INC,Unannounced Multimedia Inspection,2026-05-20 -4005207,BOURNE,REGULATED ACTIVITY(S),172357,BOURNE LANDFILL & TRANSFER STATION,Solid Waste Pre-Permit Limited Enforcement Potential,2026-05-19 -4005231,SOUTHBRIDGE,REGULATED ACTIVITY(S),172948,SOUTHBRIDGE LANDFILL NEW,Announced Multimedia Inspection,2026-05-20 -4005501,WORCESTER,REGULATED ACTIVITY(S),378393,BALLARD-GRANITE ST FACILITY,Solid Waste Inspect with Enforcement Potential,2026-05-21 -4005549,BOXFORD,REGULATED ACTIVITY(S),172360,BOXFORD LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-20 -4005553,WILMINGTON,REGULATED ACTIVITY(S),635060,887 WOBURN,Solid Waste Visit Limited Enforcement Potential,2026-05-21 -4005587,DANVERS,REGULATED ACTIVITY(S),173131,DANVERS TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-21 -4005589,PEABODY,REGULATED ACTIVITY(S),329134,ALLIED WASTE SYSTEMS DBA,Solid Waste Inspect with Enforcement Potential,2026-05-21 -4005594,PHILLIPSTON,REGULATED ACTIVITY(S),173178,PHILLIPSTON TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-20 -4005597,PHILLIPSTON,REGULATED ACTIVITY(S),172845,PHILLIPSTON LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-20 -4005599,PLAINFIELD,REGULATED ACTIVITY(S),173198,PLAINFIELD TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-21 -4005601,SAVOY,REGULATED ACTIVITY(S),172915,SAVOY LANDFILL AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-21 -4005605,DALTON,REGULATED ACTIVITY(S),172443,WARREN FARMS LANDFILL,Multiple Visits to Identify/Document a Problem,2026-05-21 -4005707,SPRINGFIELD,REGULATED ACTIVITY(S),395004,BALISE COLLISION REPAIR CENTER,Unannounced Multimedia Inspection,2026-05-21 -4005711,TOWNSEND,REGULATED ACTIVITY(S),173015,TOWNSEND LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-21 -4005740,TOWNSEND,REGULATED ACTIVITY(S),173014,TOWNSEND DUMP,Solid Waste Inspect with Enforcement Potential,2026-05-21 -4005743,WESTMINSTER,REGULATED ACTIVITY(S),204856,NE RENEWABLE POWER FITCHBURG LLC,Limited Inspect for Compliance Indicators/Field Presence,2026-05-22 -4006285,PEABODY,REGULATED ACTIVITY(S),131118,PEABODY MUNICIPAL LIGHT PLANT,Unannounced Single-Media Inspection,2026-05-26 -4006320,WESTWOOD,REGULATED ACTIVITY(S),369417,NANO C LLC,Limited Inspect for Compliance Indicators/Field Presence,2026-05-26 -4006404,FREETOWN,WATER SUPPLY/DRINKING WATER,6659,FORGE POND CAMPGROUND INC,SANITARY SURVEY,2026-05-27 -4006405,FREETOWN,WATER SUPPLY/DRINKING WATER,187553,"CAMP WELCH, THOMAS CHEW MEMORIAL",SANITARY SURVEY,2026-05-27 -4006411,MALDEN,REGULATED ACTIVITY(S),333370,ANDYS SERVICE CENTER INC,Unannounced Single-Media Inspection,2026-05-27 -4006489,YARMOUTH,REGULATED ACTIVITY(S),332165,YARMOUTH BARNSTABLE REG TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-28 -4006629,SPRINGFIELD,REGULATED ACTIVITY(S),422690,FP MCNAMARA RUBBISH REMOVAL INC,Solid Waste Inspect with Enforcement Potential,2026-05-27 -4006641,LYNN,REGULATED ACTIVITY(S),507518,CITY OF LYNN SEAPORT MARINA,Unannounced Single-Media Inspection,2026-05-28 -4006644,NORTH ADAMS,REGULATED ACTIVITY(S),130571,MORRISON BERKSHIRE INC,Unannounced Multimedia Inspection,2026-05-28 -4006650,HOPKINTON,REGULATED ACTIVITY(S),359971,EL HARVEY & SONS INC,Solid Waste Inspect with Enforcement Potential,2026-05-28 -4006652,WESTBOROUGH,REGULATED ACTIVITY(S),191625,EL HARVEY & SONS INC,Solid Waste Inspect with Enforcement Potential,2026-05-28 -4006655,IPSWICH,REGULATED ACTIVITY(S),161814,BROX INDUSTRIES INC,Drive By Inspection,2026-05-28 -4006665,NORFOLK,REGULATED ACTIVITY(S),130568,CAMGER COATINGS SYSTEMS INC,Unannounced Multimedia Inspection,2026-05-28 -4006708,HAVERHILL,REGULATED ACTIVITY(S),132291,REWORLD HAVERHILL INC,Solid Waste Inspect with Enforcement Potential,2026-05-27 -4006710,LYNN,REGULATED ACTIVITY(S),364596,COVANTA 4RECOVERY LP,Solid Waste Inspect with Enforcement Potential,2026-05-27 -4006715,SHIRLEY,WATER SUPPLY/DRINKING WATER,281497,WOODLAND RIDGE,SANITARY SURVEY,2026-05-28 -4006718,HOPKINTON,WATER SUPPLY/DRINKING WATER,7256,VILLAGE AT HIGHLAND PARK,SANITARY SURVEY,2026-05-28 -4006775,HUNTINGTON,REGULATED ACTIVITY(S),374550,J&R SERVICE,Unannounced Multimedia Inspection,2026-05-28 -4006785,SANDISFIELD,REGULATED ACTIVITY(S),172904,MINERY LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-28 -4006787,SANDISFIELD,REGULATED ACTIVITY(S),172905,SANDISFIELD DEMO LF & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-28 -4006791,MOUNT WASHINGTON,REGULATED ACTIVITY(S),288660,MOUNT WASHINGTON TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-28 -4006793,WILBRAHAM,REGULATED ACTIVITY(S),269100,WESTERN RECYCLING,Solid Waste Inspect with Enforcement Potential,2026-05-28 -4006886,BROCKTON,REGULATED ACTIVITY(S),523140,LYNE LABORATORY,Announced Multimedia Inspection,2026-05-29 -4006909,CANTON,WATER SUPPLY/DRINKING WATER,6092,CANTON WATER DEPT,SANITARY SURVEY,2026-05-28 -4006947,MANSFIELD,WATER SUPPLY/DRINKING WATER,6235,MANSFIELD WATER DIVISION,BWR/BRP Announced Inspection Related Activity,2026-05-29 diff --git a/docs/data/EEADP_inspection_sample.csv b/docs/data/EEADP_inspection_sample.csv index 1626ca04..e22fbe09 100644 --- a/docs/data/EEADP_inspection_sample.csv +++ b/docs/data/EEADP_inspection_sample.csv @@ -1,11 +1,11 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate -1649163,LYNN,REGULATED ACTIVITY(S),161954,LYNN REGIONAL WPCF,Announced Single-Media Inspection,2004-10-19 -2823854,HAVERHILL,REGULATED ACTIVITY(S),156051,DELA INC,Unannounced Multimedia Inspection,2016-06-02 -1247735,DEDHAM,REGULATED ACTIVITY(S),329681,FOUR CORNER CITGO,ReInspection,2000-05-10 -3061858,PHILLIPSTON,WATER SUPPLY/DRINKING WATER,6394,PHILLIPSTON MEMORIAL BUILDING,Compliance Evaluation-Review of Compliance Data & Reports,2019-05-15 -2763914,CARVER,WATER SUPPLY/DRINKING WATER,526798,NORTH CARVER WATER DISTRICT,BWR/BRP Announced Inspection Related Activity,2015-08-28 -2271568,HINGHAM,REGULATED ACTIVITY(S),394808,PMG 8652,Assess Reporting Problems or Inclusion to Regulated Universe,2010-05-07 -2717937,SPRINGFIELD,REGULATED ACTIVITY(S),422690,FP MCNAMARA RUBBISH REMOVAL INC,Solid Waste Inspect with Enforcement Potential,2015-01-06 -2099962,MARLBOROUGH,REGULATED ACTIVITY(S),382425,WECARE ENVIRONMENTAL LLC,Multiple Visits to Identify/Document a Problem,2008-07-25 -2552266,SOUTH HADLEY,REGULATED ACTIVITY(S),172937,SOUTH HADLEY LANDFILL,Solid Waste Inspect with Enforcement Potential,2013-04-17 -1549541,BROCKTON,REGULATED ACTIVITY(S),172381,THATCHER STREET LANDFILL,Unannounced Single-Media Inspection,2003-10-22 +2582359,WORCESTER,REGULATED ACTIVITY(S),173122,GREENWOOD STREET LANDFILL,Solid Waste Visit Limited Enforcement Potential,2013-09-05 00:00:00 +1080025,WESTFIELD,REGULATED ACTIVITY(S),300784,360 RECYCLING LLC,Unannounced Single-Media Inspection,1998-02-04 00:00:00 +3041678,BROCKTON,WATER SUPPLY/DRINKING WATER,334150,SIMPSON SPRING (BROCKTON) VEND,SANITARY SURVEY,2019-04-17 00:00:00 +3319282,HAVERHILL,REGULATED ACTIVITY(S),132291,REWORLD HAVERHILL INC,Solid Waste Inspect with Enforcement Potential,2023-03-28 00:00:00 +1888966,WARREN,REGULATED ACTIVITY(S),173040,WARREN SANITARY LANDFILL & TRANSFER STA,Drive By Inspection,2006-05-16 00:00:00 +1492316,AUBURN,REGULATED ACTIVITY(S),333306,AUBURN TRANSFER STATION & RECOVERY FACIL,Unannounced Single-Media Inspection,2003-01-15 00:00:00 +1183041,BOLTON,WATER SUPPLY/DRINKING WATER,6308,CAMP RESOLUTE/E.PAUL ROBSHAM SCOUT RES,FACILITY SELF REPORTING,1999-07-09 00:00:00 +2973427,BROCKTON,REGULATED ACTIVITY(S),405605,VS PETRO 2,Unannounced Single-Media Inspection,2018-05-09 00:00:00 +2179920,HANCOCK,WATER SUPPLY/DRINKING WATER,7012,HANCOCK ELEMENTARY SCHOOL,SANITARY SURVEY,2009-05-22 00:00:00 +3962911,BURLINGTON,WATER SUPPLY/DRINKING WATER,6090,BURLINGTON WATER DEPT,SANITARY SURVEY,2025-12-04 00:00:00 diff --git a/docs/data/EEADP_permit_sample.csv b/docs/data/EEADP_permit_sample.csv index 09460a87..dc29659a 100644 --- a/docs/data/EEADP_permit_sample.csv +++ b/docs/data/EEADP_permit_sample.csv @@ -1,11 +1,11 @@ Id,FacilityName,PermitNumber,PermitType,Subtype,Program,StreetName,Town,Status,FacilityId,FinalDecisionDate,DateApplied -EEA18CAP000000076F,ANNE MCNEIL,HW05-MA-0261,HW05,HW05,HAZARDOUS WASTE,114 BRIDGE RD,SALISBURY,Active,,2018-06-01T00:00:00, -EEA19CAP00000007NV,MARCIA CROCE,PR-0000212,PR,PRODUCT REGISTRATION,PESTICIDE,111 RIDC PARK WEST DRIVE,PITTSBURGH,Expired,,2025-06-11T11:24:56, -EEA20CAP00000004WK,SAMUEL JOHN TUCCI,AL-0051635,AL,PESTICIDE CREDENTIAL,PESTICIDE,223 SCHOOL STREET,SOMERVILLE,Expired,,2021-12-31T12:16:25, -PIM_16427,LINCOLN CORPORATE CENTER,W003652,WP14,MINOR SEWER EXTENSION,WATER POLLUTION CONTROL,25 MIDDLESEX TPKE,BILLERICA,Approved,316582,1999-03-17T00:00:00,1998-12-28T00:00:00 -EEA18CAP0000000075,GLENN R RALSTON,AL-0048030,AL,PESTICIDE CREDENTIAL,PESTICIDE,43 LEE WAY,BREWSTER,Expired,,2019-07-01T14:50:03, -PIM_58094,PEREIRA CARLOS,X232304,WW01A,Water-Dependent License Residential <= 4 units,WETLANDS & WATERWAYS,103 ASHLEY ISLAND RD,FAIRHAVEN,Approved,360916,2010-07-14T00:00:00,2010-03-29T00:00:00 -EEA18CAP0000000484,IAN PERKINS,AL-0048596,AL,PESTICIDE CREDENTIAL,PESTICIDE,110 EAMES STREET,WILMINGTON,Expired,,2020-06-30T01:00:43, -PIM_12959,INCINERATOR ROAD MUNICIPAL LANDFILL,W001022,SW24,Corrective Action Alternative Analysis Report,SOLID WASTE MGMT,INCINERATOR RD,LAWRENCE,Approved,300507,1998-08-12T00:00:00,1998-02-09T00:00:00 -EEA08PES00000001GL,MATTHEW PIDGEON,AL-0036473,AL,PESTICIDE CREDENTIAL,PESTICIDE,2 OLDE LANTERN ROAD,BEDFORD,Active,,2025-10-17T19:23:31, -EEA19CAP000000016V,LEOMINSTER TRANSFER STATION,SW45-0000017,SW45,SW45,SOLID WASTE MGMT,"256 NEW LANCASTER ST, RTE 117.",LEOMINSTER,Active,999999,2019-01-25T07:07:33, +PIM_11710,NATICK SEWER EXTENSION,121293,WP14,MINOR SEWER EXTENSION,WATER POLLUTION CONTROL,SHADY OAK LN AND HILL ST,NATICK,Approved,302207,1998-01-02T00:00:00,1997-11-13T00:00:00 +PIM_16534,MILFORD WASTEWATER TREATMENT FACILITY,200949,WM07,Modification/Renewal of NPDES Permit,WATERSHED MANAGEMENT,SOUTH MAIN ST,HOPEDALE,Approved,317087,2001-08-22T00:00:00,1999-01-11T00:00:00 +EEA25CAP0000000F9W,Delfino Wastewater,WP63-0000018,WP63,WP63,WATER POLLUTION CONTROL,880 CABEL RD,Eastham,Active,999999,2025-08-08T09:03:17, +PIM_14750,ORCHARD HILL SUBDIVISION SEWER EXT,131323,WP13,MAJOR SEWER EXTENSION,WATER POLLUTION CONTROL,ORCHARD RD,EAST LONGMEADOW,Approved,310507,1998-12-02T00:00:00,1998-07-21T00:00:00 +EEA23CAP00000001HW,Detention Pond,WM04-0001100,WM04,WM04,WATERSHED MANAGEMENT,0 1 WELLNESS WAY,Canton,Expired,999999,2023-01-30T08:33:57, +PIM_29588,WETREICH GARY & STEPHANIE,41005474,WW05A,Certificate of Compliance Water-Dependent,WETLANDS & WATERWAYS,17 OLIVER NECK RD,PLYMOUTH,Approved,366221,2002-07-07T00:00:00,2002-07-02T00:00:00 +EEA18CAP00000001WB,NICHOLAS AGRESTI,AL-0048075,AL,PESTICIDE CREDENTIAL,PESTICIDE,590 DYER AVE,CRANSTON,Expired,,2019-07-01T14:47:41, +PIM_39874,HOLISTIC INDUSTRIES,W060960,WM11,General Permit for Non-contact Cooling Water,WATERSHED MANAGEMENT,96 PALMER RD,MONSON,Approved,329262,2009-01-30T00:00:00,2005-02-25T00:00:00 +PIM_42449,DONALD SECKLER,A00165,WW02A,"Waterways license, amnesty projects, Water-dependent use projects: $100",WETLANDS & WATERWAYS,403 STANLEY RD,OTIS,Approved,418003,2005-10-03T00:00:00,1996-01-01T00:00:00 +EEA19CAP0000000II8,MICHELO JAYDEN CINEAS,AL-0051036,AL,PESTICIDE CREDENTIAL,PESTICIDE,26 JUNE ST,BOSTON,Expired,,2023-01-11T08:22:38, diff --git a/docs/data/EPARegion1_NPDES_permit_data.csv b/docs/data/EPARegion1_NPDES_permit_data.csv index 414bbbea..a3bbb007 100644 --- a/docs/data/EPARegion1_NPDES_permit_data.csv +++ b/docs/data/EPARegion1_NPDES_permit_data.csv @@ -341,7 +341,7 @@ Winsted (Still River),"Rogers Corporation (pdf) (114 KB),CT0021504,02/23/2009,Woodstock,Rogers Corporation (pdf) (114 KB),Rogers Corporation (pdf) (114 KB),['https://www.epa.gov/system/files/documents/2025-08/finalct0021504permit-2009.pdf'],final,ct,May Brook,, ,Pharmacia & Upjohn Company LLC,CT0001341,,New Haven,Pharmacia & Upjohn Company LLC,Pharmacia & Upjohn Company LLC,['https://www.epa.gov/ct/draft-permit-pharmacia-upjohn-company-llc-new-haven-ct-ct0001341'],draft,ct,,New Haven,04/24/2026 - 05/23/2026 ,"UConn Avery Point Campus, John S. Rankin Laboratory Department of Marine Sciences",CT0028631,,Groton,"UConn Avery Point Campus, John S. Rankin Laboratory Department of Marine Sciences","UConn Avery Point Campus, John S. Rankin Laboratory Department of Marine Sciences",['https://www.epa.gov/ct/draft-permit-uconn-avery-point-campus-john-s-rankin-laboratory-department-marine-sciences-groton'],draft,ct,,Groton,04/07/2026 - 05/06/2026 -,Pfizer Inc. (pdf) (3.7 MB),CT0000957,,Groton,Pfizer Inc. (pdf) (3.7 MB),Pfizer Inc. (pdf) (3.7 MB),['https://www.epa.gov/system/files/documents/2026-02/draftct0000957permit-2026.pdf'],draft,ct,,Groton,02/04/2026 - 03/03/2026 +,Pfizer Inc.,CT0000957,,Groton,Pfizer Inc.,Pfizer Inc.,['https://www.epa.gov/ct/draft-permit-pfizer-inc-groton-ct-ct0000957'],draft,ct,,Groton,02/04/2026 - 03/03/2026 ,Regional District No. 6 Prospect Elementary School (pdf) (1.1 MB),UI0000502,,Prospect,Regional District No. 6 Prospect Elementary School (pdf) (1.1 MB),Regional District No. 6 Prospect Elementary School (pdf) (1.1 MB),['https://www.epa.gov/system/files/documents/2026-01/draftui0000502permit-2026.pdf'],draft,ct,,Prospect,01/06/2026 - 02/05/2026 ,"Beacon Falls, Town of (pdf) (1.1 MB)",CT0101061,,Beacon Falls,"Beacon Falls, Town of (pdf) (1.1 MB)","Beacon Falls, Town of (pdf) (1.1 MB)",['https://www.epa.gov/system/files/documents/2025-12/draftct0101061permit-2025.pdf'],draft,ct,,Beacon Falls,12/24/2025 - 01/23/2026 ,"Danbury, City of (Modification) (pdf) (1.5 MB)",CT0100145,,Danbury,"Danbury, City of (Modification) (pdf) (1.5 MB)","Danbury, City of (Modification) (pdf) (1.5 MB)",['https://www.epa.gov/system/files/documents/2025-12/draftct0100145permitmod-2025.pdf'],draft,ct,,Danbury,12/22/2025 - 01/21/2026 @@ -645,12 +645,10 @@ Woodstock (May Brook),Baileyville POTW, Town of (pdf) (3.9 MB)",ME0101320,10/12/2013,Baileyville,"Baileyville POTW, Town of (pdf) (3.9 MB)","Baileyville POTW, Town of (pdf) (3.9 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0101320permit-2013.pdf'],final,me,"St. Croix River, Class C",, "Baileyville (St. Croix River, Class C)","Baileyville POTW, Town of (pdf) (73 KB)",ME0101320,10/24/2008,Baileyville,"Baileyville POTW, Town of (pdf) (73 KB)","Baileyville POTW, Town of (pdf) (73 KB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0101320permit-2008.pdf'],final,me,"St. Croix River, Class C",, "Baileyville (St. Croix River, Class C)","Baileyville POTW, Town of (pdf) (887 KB)",ME0101320,11/19/2003,Baileyville,"Baileyville POTW, Town of (pdf) (887 KB)","Baileyville POTW, Town of (pdf) (887 KB)",['https://www.epa.gov/system/files/documents/2025-09/me0101320permit-2003.pdf'],final,me,"St. Croix River, Class C",, -"Baileyville (St. Croix River, Class A)",Woodland Pulp LLC - Grand Falls Hydro Project (pdf) (940 KB),ME0036676,05/05/2026,Baileyville,Woodland Pulp LLC - Grand Falls Hydro Project (pdf) (940 KB),Woodland Pulp LLC - Grand Falls Hydro Project (pdf) (940 KB),['https://www.epa.gov/system/files/documents/2026-05/finalme0036676permit-2026.pdf'],final,me,"St. Croix River, Class A",, "Baileyville (St. Croix River, Class C)",Woodland Pulp LLC - Grand Falls Hydro Project (pdf) (2 MB),ME0036676,06/10/2014,Baileyville,Woodland Pulp LLC - Grand Falls Hydro Project (pdf) (2 MB),Woodland Pulp LLC - Grand Falls Hydro Project (pdf) (2 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0036676permit-2014.pdf'],final,me,"St. Croix River, Class C",, "Baileyville (St. Croix River, Class C)",Domtar Maine Corp. - Grand Falls Hydro Project (pdf) (1.8 MB),ME0036676,03/04/2009,Baileyville,Domtar Maine Corp. - Grand Falls Hydro Project (pdf) (1.8 MB),Domtar Maine Corp. - Grand Falls Hydro Project (pdf) (1.8 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0036676permit-2009.pdf'],final,me,"St. Croix River, Class C",, "Baileyville (St. Croix River, Class C)",Woodland Pulp North Site (pdf) (1.3 MB),ME0022063,08/19/2025,Baileyville,Woodland Pulp North Site (pdf) (1.3 MB),Woodland Pulp North Site (pdf) (1.3 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0022063permit-2025.pdf'],final,me,"St. Croix River, Class C",, "Baileyville (St. Croix River, Class C)",Louisiana Pacific Corp. (pdf) (72 KB),ME0022063,09/03/2008,Baileyville,Louisiana Pacific Corp. (pdf) (72 KB),Louisiana Pacific Corp. (pdf) (72 KB),['https://www.epa.gov/system/files/documents/2025-08/finalme0022063permit-2008.pdf'],final,me,"St. Croix River, Class C",, -"Baileyville (St. Croix River, Class C)",Woodland Pulp LLC - Woodland Hydro Project (pdf) (1 MB),ME0036668,05/05/2026,Baileyville,Woodland Pulp LLC - Woodland Hydro Project (pdf) (1 MB),Woodland Pulp LLC - Woodland Hydro Project (pdf) (1 MB),['https://www.epa.gov/system/files/documents/2026-05/finalme0036668permit-2026.pdf'],final,me,"St. Croix River, Class C",, "Baileyville (St. Croix River, Class C)",Woodland Pulp LLC - Pulp & Paper Manufacturing Facility (Minor Revision) (pdf) (304 KB),ME0001872,01/05/2016,Baileyville,Woodland Pulp LLC - Pulp & Paper Manufacturing Facility (Minor Revision) (pdf) (304 KB),Woodland Pulp LLC - Pulp & Paper Manufacturing Facility (Minor Revision) (pdf) (304 KB),['https://www.epa.gov/system/files/documents/2025-07/finalme0001872permitmod-2016.pdf'],final,me,"St. Croix River, Class C",, "Baileyville (St. Croix River, Class C)",Woodland Pulp LLC - Pulp & Paper Manufacturing Facility (pdf) ((8.4 MB),ME0001872,06/02/2014,Baileyville,Woodland Pulp LLC - Pulp & Paper Manufacturing Facility (pdf) ((8.4 MB),Woodland Pulp LLC - Pulp & Paper Manufacturing Facility (pdf) ((8.4 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0001872permit-2014.pdf'],final,me,"St. Croix River, Class C",, "Baileyville (St. Croix River, Class C)",Domtar Maine Corp. - Pulp & Paper Manufacturing Facility (pdf) (4.8 MB),ME0001872,06/01/2005,Baileyville,Domtar Maine Corp. - Pulp & Paper Manufacturing Facility (pdf) (4.8 MB),Domtar Maine Corp. - Pulp & Paper Manufacturing Facility (pdf) (4.8 MB),['https://www.epa.gov/system/files/documents/2025-09/me0001872permit-2005.pdf'],final,me,"St. Croix River, Class C",, @@ -809,7 +807,6 @@ Biddeford,"Bay Bridge Estates, LLC, Mobile Home Park (pdf) (2.5 MB)",ME0036811,11/04/2011,Brunswick,"Bay Bridge Estates, LLC, Mobile Home Park (pdf) (2.5 MB)","Bay Bridge Estates, LLC, Mobile Home Park (pdf) (2.5 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0036811permit-2011.pdf'],final,me,"Androscoggin River, Class C",, "Brunswick (Groundwater, Class GW-A)","Brunswick (Mere Point), Town of (pdf) (1.3 MB)",MEU508015,08/05/2013,Brunswick,"Brunswick (Mere Point), Town of (pdf) (1.3 MB)","Brunswick (Mere Point), Town of (pdf) (1.3 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalmeu508015permit-2013.pdf'],final,me,"Groundwater, Class GW-A",, "Brunswick (Androscoggin River, Class C)","Brunswick Non-Hazardous Waste Landfill, Town of (pdf) (3.8 MB)",ME0102113,08/12/2011,Brunswick,"Brunswick Non-Hazardous Waste Landfill, Town of (pdf) (3.8 MB)","Brunswick Non-Hazardous Waste Landfill, Town of (pdf) (3.8 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0102113permit-2011.pdf'],final,me,"Androscoggin River, Class C",, -"Brunswick (Androscoggin River, Class B)",Brunswick Sewer District (pdf) (2 MB),ME0100102,05/05/2026,Brunswick,Brunswick Sewer District (pdf) (2 MB),Brunswick Sewer District (pdf) (2 MB),['https://www.epa.gov/system/files/documents/2026-05/finalme0100102permit-2026.pdf'],final,me,"Androscoggin River, Class B",, "Brunswick (Androscoggin River, Class C)",Brunswick Sewer District (pdf) (3.4 MB),ME0100102,08/03/2015,Brunswick,Brunswick Sewer District (pdf) (3.4 MB),Brunswick Sewer District (pdf) (3.4 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0100102permit-2015.pdf'],final,me,"Androscoggin River, Class C",, "Brunswick (Androscoggin River, Class C)",Brunswick Sewer District (Modification) (pdf) (534 KB),ME0100102,09/10/2013,Brunswick,Brunswick Sewer District (Modification) (pdf) (534 KB),Brunswick Sewer District (Modification) (pdf) (534 KB),['https://www.epa.gov/system/files/documents/2025-07/finalme0100102permit-2013.pdf'],final,me,"Androscoggin River, Class C",, "Brunswick (Androscoggin River, Class C)",Brunswick Sewer District (Minor Revision) (pdf) (4 MB),ME0100102,03/23/2011,Brunswick,Brunswick Sewer District (Minor Revision) (pdf) (4 MB),Brunswick Sewer District (Minor Revision) (pdf) (4 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0100102permitmr-2011.pdf'],final,me,"Androscoggin River, Class C",, @@ -859,9 +856,8 @@ Biddeford,"Calais POTW, City of (pdf) (508 KB)",ME0100129,01/15/2014,Calais,"Calais POTW, City of (pdf) (508 KB)","Calais POTW, City of (pdf) (508 KB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0100129permit-2014.pdf'],final,me,"St. Croix River, Class SC & C",, "Calais (St. Croix River, Class SC & C)","Calais POTW, City of (pdf) (3.1 MB)",ME0100129,10/04/2011,Calais,"Calais POTW, City of (pdf) (3.1 MB)","Calais POTW, City of (pdf) (3.1 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0100129permit-2011.pdf'],final,me,"St. Croix River, Class SC & C",, "Calais (St. Croix River, Class SC)","Calais POTW, City of (pdf) (2.7 MB)",ME0100129,09/29/2006,Calais,"Calais POTW, City of (pdf) (2.7 MB)","Calais POTW, City of (pdf) (2.7 MB)",['https://www.epa.gov/system/files/documents/2025-09/finalme0100129permit-2006.pdf'],final,me,"St. Croix River, Class SC",, -"Calais (St. Croix River, Class SC)",Washington County Community College - Overboard Discharge (pdf) (1.1 MB),ME0102831,05/01/2026,Calais,Washington County Community College - Overboard Discharge (pdf) (1.1 MB),Washington County Community College - Overboard Discharge (pdf) (1.1 MB),['https://www.epa.gov/system/files/documents/2026-05/finalme0102831permit-2026.pdf'],final,me,"St. Croix River, Class SC",, -"Calais (St. Croix River, Class SB)",Washington County Community College - Overboard Discharge (pdf) (2.8 MB),ME0102831,03/04/2014,Calais,Washington County Community College - Overboard Discharge (pdf) (2.8 MB),Washington County Community College - Overboard Discharge (pdf) (2.8 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0102831permit-2014.pdf'],final,me,"St. Croix River, Class SB",, -"Calais (St. Croix River, Class SB)",Washington County Community College - Overboard Discharge (pdf) (1 MB),ME0102831,03/05/2009,Calais,Washington County Community College - Overboard Discharge (pdf) (1 MB),Washington County Community College - Overboard Discharge (pdf) (1 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0102831permit-2009.pdf'],final,me,"St. Croix River, Class SB",, +"Calais (St. Croix River, Class SB)",Washington County Community College (pdf) (2.8 MB),ME0102831,03/04/2014,Calais,Washington County Community College (pdf) (2.8 MB),Washington County Community College (pdf) (2.8 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0102831permit-2014.pdf'],final,me,"St. Croix River, Class SB",, +"Calais (St. Croix River, Class SB)",Washington County Community College (pdf) (1 MB),ME0102831,03/05/2009,Calais,Washington County Community College (pdf) (1 MB),Washington County Community College (pdf) (1 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0102831permit-2009.pdf'],final,me,"St. Croix River, Class SB",, "Camden (Camden Harbor, Class SB)","Camden POTW, Town of (pdf) (3 MB)",ME0100137,12/11/2018,Camden,"Camden POTW, Town of (pdf) (3 MB)","Camden POTW, Town of (pdf) (3 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0100137permit-2018.pdf'],final,me,"Camden Harbor, Class SB",, "Camden (Camden Harbor, Class SB)","Camden POTW, Town of (pdf) (4.5 MB)",ME0100137,08/05/2013,Camden,"Camden POTW, Town of (pdf) (4.5 MB)","Camden POTW, Town of (pdf) (4.5 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0100137permit-2013.pdf'],final,me,"Camden Harbor, Class SB",, "Camden (Camden Harbor, Class SB)","Camden POTW, Town of (pdf) (2.4 MB)",ME0100137,07/18/2003,Camden,"Camden POTW, Town of (pdf) (2.4 MB)","Camden POTW, Town of (pdf) (2.4 MB)",['https://www.epa.gov/system/files/documents/2025-09/me0100137permit-2003.pdf'],final,me,"Camden Harbor, Class SB",, @@ -890,8 +886,7 @@ Biddeford,"Caribou Utilities District POTW (Minor Revision) (pdf) (2.3 MB),ME0100145,02/04/2013,Caribou,Caribou Utilities District POTW (Minor Revision) (pdf) (2.3 MB),Caribou Utilities District POTW (Minor Revision) (pdf) (2.3 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0100145permitmr-2013.pdf'],final,me,"Aroostook River, Class C",, "Caribou (Aroostook River, Class C)",Caribou Utilities District POTW (pdf) (3.2 MB),ME0100145,12/12/2011,Caribou,Caribou Utilities District POTW (pdf) (3.2 MB),Caribou Utilities District POTW (pdf) (3.2 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0100145permit-2011.pdf'],final,me,"Aroostook River, Class C",, "Caribou (Aroostook River, Class C)",Caribou Utilities District POTW (pdf) (1.4 MB),ME0100145,12/22/2006,Caribou,Caribou Utilities District POTW (pdf) (1.4 MB),Caribou Utilities District POTW (pdf) (1.4 MB),['https://www.epa.gov/system/files/documents/2025-09/finalme0100145permit-2006.pdf'],final,me,"Aroostook River, Class C",, -"Caribou (Ground Water, Class GW-A)",Guerrette Farms Corporation - Surface Water Disposal (pdf) (1.7 MB),MEU508271,05/01/2026,Caribou,Guerrette Farms Corporation - Surface Water Disposal (pdf) (1.7 MB),Guerrette Farms Corporation - Surface Water Disposal (pdf) (1.7 MB),['https://www.epa.gov/system/files/documents/2026-05/finalmeu508271permit-2026.pdf'],final,me,"Ground Water, Class GW-A",, -"Caribou (Ground Water, Class GW-A)",Guerrette Farms Corporation - Surface Water Disposal (pdf) (1.3 MB),MEU508271,03/15/2019,Caribou,Guerrette Farms Corporation - Surface Water Disposal (pdf) (1.3 MB),Guerrette Farms Corporation - Surface Water Disposal (pdf) (1.3 MB),['https://www.epa.gov/system/files/documents/2025-07/finalmeu508271permit-2019.pdf'],final,me,"Ground Water, Class GW-A",, +"Caribou (Groundwater, Class GW-A)",Guerrette Farms Corporation (pdf) (1.3 MB),MEU508271,03/15/2019,Caribou,Guerrette Farms Corporation (pdf) (1.3 MB),Guerrette Farms Corporation (pdf) (1.3 MB),['https://www.epa.gov/system/files/documents/2025-07/finalmeu508271permit-2019.pdf'],final,me,"Groundwater, Class GW-A",, "Caribou (Aroostook River, Class C)",Limestone Water & Sewer District POTW (pdf) (3.4 MB),ME0102849,07/07/2015,Caribou,Limestone Water & Sewer District POTW (pdf) (3.4 MB),Limestone Water & Sewer District POTW (pdf) (3.4 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0102849permit-2015.pdf'],final,me,"Aroostook River, Class C",, "Caribou (Aroostook River, Class C)",Limestone Water & Sewer District POTW (Modification) (pdf) (3.1 MB),ME0102849,09/18/2013,Caribou,Limestone Water & Sewer District POTW (Modification) (pdf) (3.1 MB),Limestone Water & Sewer District POTW (Modification) (pdf) (3.1 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0102849permit-2013.pdf'],final,me,"Aroostook River, Class C",, "Caribou (Aroostook River, Class C)",Limestone Water & Sewer District POTW (Minor Revision) (pdf) (2.8 MB),ME0102849,01/14/2013,Caribou,Limestone Water & Sewer District POTW (Minor Revision) (pdf) (2.8 MB),Limestone Water & Sewer District POTW (Minor Revision) (pdf) (2.8 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0102849permitmr-2013.pdf'],final,me,"Aroostook River, Class C",, @@ -932,7 +927,6 @@ China,Clinton Water District (Modification) (pdf) (530 KB),ME0101699,09/10/2013,Clinton,Clinton Water District (Modification) (pdf) (530 KB),Clinton Water District (Modification) (pdf) (530 KB),['https://www.epa.gov/system/files/documents/2025-07/finalme0101699arspermit-2013.pdf'],final,me,"Sebasticook River, Class C",, "Clinton (Sebasticook River, Class C)",Clinton Water District (pdf) (5.3 MB),ME0101699,04/17/2013,Clinton,Clinton Water District (pdf) (5.3 MB),Clinton Water District (pdf) (5.3 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0101699permit-2013.pdf'],final,me,"Sebasticook River, Class C",, "Clinton (Sebasticook River, Class C)",Clinton Water District (pdf) (112 KB),ME0101699,04/28/2008,Clinton,Clinton Water District (pdf) (112 KB),Clinton Water District (pdf) (112 KB),['https://www.epa.gov/system/files/documents/2025-08/finalme0101699permit-2008.pdf'],final,me,"Sebasticook River, Class C",, -"Clinton (Kennebec River, Class C)",Flood Brothers LLC (pdf) (885 KB),ME0036986,05/01/2026,Clinton,Flood Brothers LLC (pdf) (885 KB),Flood Brothers LLC (pdf) (885 KB),['https://www.epa.gov/system/files/documents/2026-05/finalme0036986permit-2026.pdf'],final,me,"Kennebec River, Class C",, "Clinton (Jackins Brook, Class B; Kennebec River, Class C)",Flood Brothers LLC (pdf) (2.3 MB),ME0036986,05/03/2019,Clinton,Flood Brothers LLC (pdf) (2.3 MB),Flood Brothers LLC (pdf) (2.3 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0036986permit-2019.pdf'],final,me,"Jackins Brook, Class B; Kennebec River, Class C",, "Clinton (Jackins Brook, Class B; Kennebec River, Class C)",Flood Brothers LLC (pdf) (1.8 MB),ME0036986,03/03/2014,Clinton,Flood Brothers LLC (pdf) (1.8 MB),Flood Brothers LLC (pdf) (1.8 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0036986permit-2014.pdf'],final,me,"Jackins Brook, Class B; Kennebec River, Class C",, "Clinton (Jackins Brook, Class B; Kennebec River, Class C)","Flood Brothers, Inc. (pdf) (40 KB)",ME0036986,10/03/2008,Clinton,"Flood Brothers, Inc. (pdf) (40 KB)","Flood Brothers, Inc. (pdf) (40 KB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0036986permit-2008.pdf'],final,me,"Jackins Brook, Class B; Kennebec River, Class C",, @@ -1225,8 +1219,7 @@ Frenchville (St. John River),Brookfield White Pine Hydro, LLC - Bar Mills Hydro Project (pdf) (1.8 MB)",ME0001244,06/15/2018,Hollis,"Brookfield White Pine Hydro, LLC - Bar Mills Hydro Project (pdf) (1.8 MB)","Brookfield White Pine Hydro, LLC - Bar Mills Hydro Project (pdf) (1.8 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0001244permit-2018.pdf'],final,me,"Saco River, Class A",, "Hollis (Saco River, Class A)","Brookfield White Pine Hydro, LLC - Bar Mills Hydro Project (pdf) (2.2 MB)",ME0001244,07/22/2013,Hollis,"Brookfield White Pine Hydro, LLC - Bar Mills Hydro Project (pdf) (2.2 MB)","Brookfield White Pine Hydro, LLC - Bar Mills Hydro Project (pdf) (2.2 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0001244permit-2013.pdf'],final,me,"Saco River, Class A",, "Hollis (Saco River, Class A)","FPL Energy Maine Hydro, LLC - Bar Mills Hydro Project (pdf) (33 KB)",ME0001244,09/18/2008,Hollis,"FPL Energy Maine Hydro, LLC - Bar Mills Hydro Project (pdf) (33 KB)","FPL Energy Maine Hydro, LLC - Bar Mills Hydro Project (pdf) (33 KB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0001244permit-2008.pdf'],final,me,"Saco River, Class A",, -"Hollis (Ground Water, Class GW-A)","BlueTriton Brands, Inc. d/b/a Poland Spring Bottling Company (Transfer from Nestle Waters of North America, Inc.) (pdf) (1.5 MB)",MEU508248,05/15/2026,Hollis,"BlueTriton Brands, Inc. d/b/a Poland Spring Bottling Company (Transfer from Nestle Waters of North America, Inc.) (pdf) (1.5 MB)","BlueTriton Brands, Inc. d/b/a Poland Spring Bottling Company (Transfer from Nestle Waters of North America, Inc.) (pdf) (1.5 MB)",['https://www.epa.gov/system/files/documents/2026-05/finalmeu508248permit-2026.pdf'],final,me,"Ground Water, Class GW-A",, -"Hollis (Ground Water, Class GW-A)",Nestle Waters North America Inc. d/b/a Poland Spring Bottling Company (pdf) (2.6 MB),MEU508248,07/17/2013,Hollis,Nestle Waters North America Inc. d/b/a Poland Spring Bottling Company (pdf) (2.6 MB),Nestle Waters North America Inc. d/b/a Poland Spring Bottling Company (pdf) (2.6 MB),['https://www.epa.gov/system/files/documents/2025-07/finalmeu508248permit-2013.pdf'],final,me,"Ground Water, Class GW-A",, +"Hollis (Groundwater, Class GW-A)",Nestle Waters North America Inc. d/b/a Poland Spring Bottling Company (pdf) (2.6 MB),MEU508248,07/17/2013,Hollis,Nestle Waters North America Inc. d/b/a Poland Spring Bottling Company (pdf) (2.6 MB),Nestle Waters North America Inc. d/b/a Poland Spring Bottling Company (pdf) (2.6 MB),['https://www.epa.gov/system/files/documents/2025-07/finalmeu508248permit-2013.pdf'],final,me,"Groundwater, Class GW-A",, "Hollis (Wales Pond Brook, Class B)",Shy Beaver Trout LLC - Shy Beaver Hatchery (pdf) (1.7 MB),ME0036838,01/11/2022,Hollis,Shy Beaver Trout LLC - Shy Beaver Hatchery (pdf) (1.7 MB),Shy Beaver Trout LLC - Shy Beaver Hatchery (pdf) (1.7 MB),['https://www.epa.gov/system/files/documents/2025-06/finalme0036838permit-2022.pdf'],final,me,"Wales Pond Brook, Class B",, "Hollis (Wales Pond Brook, Class B)","Pierce Associates, Inc. d/b/a Shy Beaver Hatchery (pdf) (2.1 MB)",ME0036838,06/17/2015,Hollis,"Pierce Associates, Inc. d/b/a Shy Beaver Hatchery (pdf) (2.1 MB)","Pierce Associates, Inc. d/b/a Shy Beaver Hatchery (pdf) (2.1 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0036838permit-2015.pdf'],final,me,"Wales Pond Brook, Class B",, "Hollis (Wales Pond Brook, Class B)","Pierce Associates, Inc. d/b/a Shy Beaver Hatchery (pdf) (1.9 MB)",ME0036838,02/23/2010,Hollis,"Pierce Associates, Inc. d/b/a Shy Beaver Hatchery (pdf) (1.9 MB)","Pierce Associates, Inc. d/b/a Shy Beaver Hatchery (pdf) (1.9 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0036838permit-2010.pdf'],final,me,"Wales Pond Brook, Class B",, @@ -1463,6 +1456,7 @@ Kennebunkport (Kennebunk River),"The Island Inn Monhegan Island Plantation (pdf) (803 KB),ME0037516,10/05/2022,Monhegan Island Plantation,The Island Inn Monhegan Island Plantation (pdf) (803 KB),The Island Inn Monhegan Island Plantation (pdf) (803 KB),['https://www.epa.gov/system/files/documents/2025-06/finalme0037516permit-2022.pdf'],final,me,"Monhegan Harbor, Atlantic Ocean, Class SB",, "Monhegan Island Plantation (Monhegan Harbor, Atlantic Ocean, Class SB)","The Trailing Yew, LLC Monhegan Island Plantation (pdf) (1.7 MB)",ME0037508,10/21/2020,Monhegan Island Plantation,"The Trailing Yew, LLC Monhegan Island Plantation (pdf) (1.7 MB)","The Trailing Yew, LLC Monhegan Island Plantation (pdf) (1.7 MB)",['https://www.epa.gov/system/files/documents/2025-06/finalme0037508permit-2020.pdf'],final,me,"Monhegan Harbor, Atlantic Ocean, Class SB",, "Monmouth (Cochnewagon Lake, Class GPA)",Cobbossee Watershed District (pdf) (2.5 MB),ME0002801,04/05/2019,Monmouth,Cobbossee Watershed District (pdf) (2.5 MB),Cobbossee Watershed District (pdf) (2.5 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0002801permit-2019.pdf'],final,me,"Cochnewagon Lake, Class GPA",, +"Monmouth (Wilson Stream, Class B)","Tex Tech Industries, Inc. (pdf) (2.2 MB)",ME0001911,09/04/2014,Monmouth,"Tex Tech Industries, Inc. (pdf) (2.2 MB)","Tex Tech Industries, Inc. (pdf) (2.2 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0001911permit-2014.pdf'],final,me,"Wilson Stream, Class B",, "Monson (Groundwater, Class GW-A)",Monson Utilities District SSWWD (pdf) (2 MB),MEU507155,11/02/2012,Monson,Monson Utilities District SSWWD (pdf) (2 MB),Monson Utilities District SSWWD (pdf) (2 MB),['https://www.epa.gov/system/files/documents/2025-08/finalmeu507155permit-2012.pdf'],final,me,"Groundwater, Class GW-A",, "Monticello (North Branch of Meduxnekeag River, Class B)",Monticello Housing Corporation (pdf) (7.8 MB),ME0037168,09/02/2020,Monticello,Monticello Housing Corporation (pdf) (7.8 MB),Monticello Housing Corporation (pdf) (7.8 MB),['https://www.epa.gov/system/files/documents/2025-06/finalme0037168permit-2020.pdf'],final,me,"North Branch of Meduxnekeag River, Class B",, "Monticello (North Branch of Meduxnekeag River, Class B)",Monticello Housing Corporation (pdf) (1.5 MB),ME0037168,04/09/2015,Monticello,Monticello Housing Corporation (pdf) (1.5 MB),Monticello Housing Corporation (pdf) (1.5 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0037168permit-2015.pdf'],final,me,"North Branch of Meduxnekeag River, Class B",, @@ -1484,7 +1478,6 @@ Kennebunkport (Kennebunk River),"Gosnold Arms, Inc. (pdf) (1.6 MB)",ME0037061,03/02/2015,New Harbor,"Gosnold Arms, Inc. (pdf) (1.6 MB)","Gosnold Arms, Inc. (pdf) (1.6 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0037061permit-2015.pdf'],final,me,"New Harbor, Class SB",, "New Sharon (Groundwater, Class GW-A)","AAA Interstate Septic Services, Inc. (pdf) (904 KB)",MEU509012,11/02/2018,New Sharon,"AAA Interstate Septic Services, Inc. (pdf) (904 KB)","AAA Interstate Septic Services, Inc. (pdf) (904 KB)",['https://www.epa.gov/system/files/documents/2025-07/finalmeu509012permit-2018.pdf'],final,me,"Groundwater, Class GW-A",, "New Sharon (Groundwater, Class GW-A)","AAA Interstate Septic Services, Inc. (pdf) (2.1 MB)",MEU509012,12/06/2007,New Sharon,"AAA Interstate Septic Services, Inc. (pdf) (2.1 MB)","AAA Interstate Septic Services, Inc. (pdf) (2.1 MB)",['https://www.epa.gov/system/files/documents/2025-09/finalmeu509012permit-2007.pdf'],final,me,"Groundwater, Class GW-A",, -"New Sharon (Sandy River, Class B)",New Sharon Water District (pdf) (1.2 MB),ME0023671,05/15/2026,New Sharon,New Sharon Water District (pdf) (1.2 MB),New Sharon Water District (pdf) (1.2 MB),['https://www.epa.gov/system/files/documents/2026-05/finalme0023671permit-2026.pdf'],final,me,"Sandy River, Class B",, "New Sharon (Sandy River, Class B)",New Sharon Water District (pdf) (1.4 MB),ME0023671,10/08/2019,New Sharon,New Sharon Water District (pdf) (1.4 MB),New Sharon Water District (pdf) (1.4 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0023671permit-2019.pdf'],final,me,"Sandy River, Class B",, "New Sharon (Sandy River, Class B)",New Sharon Water District (pdf) (3.4 MB),ME0023671,04/14/2009,New Sharon,New Sharon Water District (pdf) (3.4 MB),New Sharon Water District (pdf) (3.4 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0023671permit-2009.pdf'],final,me,"Sandy River, Class B",, "Newagen (Cape Newagen Harbor, Atlantic Ocean, Class SB)","Newagen Seaside Inn, Inc. (pdf) (991 KB)",ME0021229,02/09/2024,Newagen,"Newagen Seaside Inn, Inc. (pdf) (991 KB)","Newagen Seaside Inn, Inc. (pdf) (991 KB)",['https://www.epa.gov/system/files/documents/2025-06/finalme0021229permit-2024.pdf'],final,me,"Cape Newagen Harbor, Atlantic Ocean, Class SB",, @@ -1518,9 +1511,7 @@ Kennebunkport (Kennebunk River),"North Haven Drinking Water Treatment Plant (pdf) (1.6 MB),ME0102482,07/19/2018,North Haven,North Haven Drinking Water Treatment Plant (pdf) (1.6 MB),North Haven Drinking Water Treatment Plant (pdf) (1.6 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0102482permit-2018.pdf'],final,me,"Palustrine forested/scrub-shrub wetland, Class B",, "North Haven (Palustrine forested/scrub-shrub wetland, Class B)",North Haven Drinking Water Treatment Plant (pdf) (1.1 MB),ME0102482,08/02/2012,North Haven,North Haven Drinking Water Treatment Plant (pdf) (1.1 MB),North Haven Drinking Water Treatment Plant (pdf) (1.1 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0102482permit-2012.pdf'],final,me,"Palustrine forested/scrub-shrub wetland, Class B",, "North Haven (Palustrine forested/scrub-shrub wetland, Class GWA)",North Haven Drinking Water Treatment Plant (pdf) (1.1 MB),ME0102482,06/15/2007,North Haven,North Haven Drinking Water Treatment Plant (pdf) (1.1 MB),North Haven Drinking Water Treatment Plant (pdf) (1.1 MB),['https://www.epa.gov/system/files/documents/2025-09/finalme0102482permit-2007.pdf'],final,me,"Palustrine forested/scrub-shrub wetland, Class GWA",, -"North Monmouth (Wilson Stream, Class B)","Tex Tech Industries, Inc. (pdf) (820 KB)",ME0001911,05/15/2026,North Monmouth,"Tex Tech Industries, Inc. (pdf) (820 KB)","Tex Tech Industries, Inc. (pdf) (820 KB)",['https://www.epa.gov/system/files/documents/2026-05/finalme0001911permit-2026.pdf'],final,me,"Wilson Stream, Class B",, "North Monmouth (Wilson Stream, Class B)","Tex Tech Industries, Inc. (pdf) (1.3 MB)",ME0001911,12/20/2019,North Monmouth,"Tex Tech Industries, Inc. (pdf) (1.3 MB)","Tex Tech Industries, Inc. (pdf) (1.3 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0001911permit-2019.pdf'],final,me,"Wilson Stream, Class B",, -"North Monmouth (Wilson Stream, Class B)","Tex Tech Industries, Inc. (pdf) (2.2 MB)",ME0001911,09/04/2014,North Monmouth,"Tex Tech Industries, Inc. (pdf) (2.2 MB)","Tex Tech Industries, Inc. (pdf) (2.2 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0001911permit-2014.pdf'],final,me,"Wilson Stream, Class B",, "Pierce Pond Township (Black Brook, Class B)",Dead River Fish Hatchery (pdf) (1.2 MB),ME0110477,01/07/2026,Pierce Pond Township,Dead River Fish Hatchery (pdf) (1.2 MB),Dead River Fish Hatchery (pdf) (1.2 MB),['https://www.epa.gov/system/files/documents/2026-01/finalme0110477permit-2026.pdf'],final,me,"Black Brook, Class B",, "North New Portland/Pierce Pond TWP (Black Brook, Class B)",Dead River Fish Hatchery (Minor Revision) (pdf) (2 MB),ME0110477,07/16/2009,North New Portland/Pierce Pond TWP,Dead River Fish Hatchery (Minor Revision) (pdf) (2 MB),Dead River Fish Hatchery (Minor Revision) (pdf) (2 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0110477permitmod-2009.pdf'],final,me,"Black Brook, Class B",, "North New Portland/Pierce Pond TWP (Black Brook, Class B)",Dead River Fish Hatchery (pdf) (2.6 MB),ME0110477,12/19/2005,North New Portland/Pierce Pond TWP,Dead River Fish Hatchery (pdf) (2.6 MB),Dead River Fish Hatchery (pdf) (2.6 MB),['https://www.epa.gov/system/files/documents/2025-09/finalme0110477permit-2005.pdf'],final,me,"Black Brook, Class B",, @@ -1672,7 +1663,6 @@ Portland,"McCain Foods USA, Inc. (Minor Revision) (pdf) (565 KB)",ME0036218,06/05/2017,Presque Isle,"McCain Foods USA, Inc. (Minor Revision) (pdf) (565 KB)","McCain Foods USA, Inc. (Minor Revision) (pdf) (565 KB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0036218permitmod-2017.pdf'],final,me,"Aroostook River, Class C",, "Presque Isle (Aroostook River, Class C)","McCain Foods USA, Inc. (pdf) (3.8 MB)",ME0036218,06/02/2015,Presque Isle,"McCain Foods USA, Inc. (pdf) (3.8 MB)","McCain Foods USA, Inc. (pdf) (3.8 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0036218permit-2015.pdf'],final,me,"Aroostook River, Class C",, "Presque Isle (Aroostook River, Class C)","McCain Foods USA, Inc. (pdf) (3.4 MB)",ME0036218,05/17/2007,Presque Isle,"McCain Foods USA, Inc. (pdf) (3.4 MB)","McCain Foods USA, Inc. (pdf) (3.4 MB)",['https://www.epa.gov/system/files/documents/2025-09/finalme0036218permit-2007.pdf'],final,me,"Aroostook River, Class C",, -"Presque Isle (Aroostook River, Class C)",SMC Real Estate Inc. d/b/a Town and Country Apartments (pdf) (821 KB),ME0036765,05/01/2026,Presque Isle,SMC Real Estate Inc. d/b/a Town and Country Apartments (pdf) (821 KB),SMC Real Estate Inc. d/b/a Town and Country Apartments (pdf) (821 KB),['https://www.epa.gov/system/files/documents/2026-05/finalme0036765permit-2026.pdf'],final,me,"Aroostook River, Class C",, "Presque Isle (Aroostook River, Class C)","Phoenix Enterprises, Inc d/b/a Town and Country Apartments (Minor Revision) (pdf) (327 KB)",ME0036765,10/04/2016,Presque Isle,"Phoenix Enterprises, Inc d/b/a Town and Country Apartments (Minor Revision) (pdf) (327 KB)","Phoenix Enterprises, Inc d/b/a Town and Country Apartments (Minor Revision) (pdf) (327 KB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0036765permitmod-2016.pdf'],final,me,"Aroostook River, Class C",, "Presque Isle (Aroostook River, Class C)","Phoenix Enterprises, Inc d/b/a Town and Country Apartments (pdf) (1.3 MB)",ME0036765,10/20/2015,Presque Isle,"Phoenix Enterprises, Inc d/b/a Town and Country Apartments (pdf) (1.3 MB)","Phoenix Enterprises, Inc d/b/a Town and Country Apartments (pdf) (1.3 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0036765permit-2015.pdf'],final,me,"Aroostook River, Class C",, "Presque Isle (Groundwater, Class GW-A)","Presque Isle (Echo Lake) SSWWD, City of (pdf) (734 KB)",MEU508017,12/19/2022,Presque Isle,"Presque Isle (Echo Lake) SSWWD, City of (pdf) (734 KB)","Presque Isle (Echo Lake) SSWWD, City of (pdf) (734 KB)",['https://www.epa.gov/system/files/documents/2025-06/finalmeu508017permit-2022.pdf'],final,me,"Groundwater, Class GW-A",, @@ -1703,7 +1693,6 @@ Portland,"Richmond Utilities District (pdf) (94 KB),ME0100587,03/12/2008,Richmond,Richmond Utilities District (pdf) (94 KB),Richmond Utilities District (pdf) (94 KB),['https://www.epa.gov/system/files/documents/2025-08/finalme0100587permit-2008.pdf'],final,me,"Kennebec River, Class B",, "Rockland (Rockland Harbor, Class SC)","Dragon Products Company, LLC (pdf) (2.5 MB)",ME0036994,07/08/2013,Rockland,"Dragon Products Company, LLC (pdf) (2.5 MB)","Dragon Products Company, LLC (pdf) (2.5 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0036994permit-2013.pdf'],final,me,"Rockland Harbor, Class SC",, "Rockland (Rockland Harbor, Class SC)","Dragon Products Company, LLC (pdf) (45 KB)",ME0036994,11/25/2008,Rockland,"Dragon Products Company, LLC (pdf) (45 KB)","Dragon Products Company, LLC (pdf) (45 KB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0036994permit-2008.pdf'],final,me,"Rockland Harbor, Class SC",, -"Rockland (Rockland Harbor, Class SC)",Danisco USA Inc. (pdf) (692 KB),ME0000400,05/05/2026,Rockland,Danisco USA Inc. (pdf) (692 KB),Danisco USA Inc. (pdf) (692 KB),['https://www.epa.gov/system/files/documents/2026-05/finalme0000400permit-2026.pdf'],final,me,"Rockland Harbor, Class SC",, "Rockland (Rockland Harbor, Class SC)","Danisco USA Inc. (Transfer from DuPont Nutrition USA, Inc.) (pdf) (2.4 MB)",ME0000400,02/27/2025,Rockland,"Danisco USA Inc. (Transfer from DuPont Nutrition USA, Inc.) (pdf) (2.4 MB)","Danisco USA Inc. (Transfer from DuPont Nutrition USA, Inc.) (pdf) (2.4 MB)",['https://www.epa.gov/system/files/documents/2025-02/finalme0000400permit-transfer-2025.pdf'],final,me,"Rockland Harbor, Class SC",, "Rockland (Rockland Harbor, Class SC)","DuPont Nutrition USA, Inc. (Minor Revision) (pdf) (417 KB)",ME0000400,07/18/2018,Rockland,"DuPont Nutrition USA, Inc. (Minor Revision) (pdf) (417 KB)","DuPont Nutrition USA, Inc. (Minor Revision) (pdf) (417 KB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0000400permitmod-2018.pdf'],final,me,"Rockland Harbor, Class SC",, "Rockland (Rockland Harbor, Class SC)","DuPont Nutrition USA, Inc. (Correction - Transfer from FMC Corporation) (pdf) (2.2 MB)",ME0000400,11/27/2017,Rockland,"DuPont Nutrition USA, Inc. (Correction - Transfer from FMC Corporation) (pdf) (2.2 MB)","DuPont Nutrition USA, Inc. (Correction - Transfer from FMC Corporation) (pdf) (2.2 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0000400permitcorrection-2017.pdf'],final,me,"Rockland Harbor, Class SC",, @@ -1734,7 +1723,6 @@ Portland,"Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (1.6 MB),ME0101486,05/03/2023,Rumford,Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (1.6 MB),Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (1.6 MB),['https://www.epa.gov/system/files/documents/2025-06/finalme0101486permit-2023.pdf'],final,me,"Androscoggin River, Class C",, "Rumford (Androscoggin River, Class C)",Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (1.7 MB),ME0101486,11/02/2015,Rumford,Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (1.7 MB),Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (1.7 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0101486permit-2015.pdf'],final,me,"Androscoggin River, Class C",, "Rumford (Androscoggin River, Class C)",Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (2.2 MB),ME0101486,08/05/2010,Rumford,Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (2.2 MB),Rumford-Mexico Sewerage District - Rumford Point Facility (pdf) (2.2 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0101486permit-2010.pdf'],final,me,"Androscoggin River, Class C",, -"Sabattus (Sabattus River, Class C)",Blue Ridge Properties LLC d/b/a Begin Mobile Home Park (Transfer) (pdf) (999 KB),ME0037010,05/15/2026,Sabattus,Blue Ridge Properties LLC d/b/a Begin Mobile Home Park (Transfer) (pdf) (999 KB),Blue Ridge Properties LLC d/b/a Begin Mobile Home Park (Transfer) (pdf) (999 KB),['https://www.epa.gov/system/files/documents/2026-05/finalme0037010permit-transfer-2026.pdf'],final,me,"Sabattus River, Class C",, "Sabattus (Sabattus River, Class C)",d/b/a Begin Mobile Home Park (pdf) (2.1 MB),ME0037010,04/05/2019,Sabattus,d/b/a Begin Mobile Home Park (pdf) (2.1 MB),d/b/a Begin Mobile Home Park (pdf) (2.1 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0037010permit-2019.pdf'],final,me,"Sabattus River, Class C",, "Sabattus (Sabattus River, Class C)",Sabattus Sanitary District POTW (Modification) (pdf) (3.5 MB),ME0101842,04/19/2017,Sabattus,Sabattus Sanitary District POTW (Modification) (pdf) (3.5 MB),Sabattus Sanitary District POTW (Modification) (pdf) (3.5 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0101842permitmod-2017.pdf'],final,me,"Sabattus River, Class C",, "Sabattus (Sabattus River, Class C)",Sabattus Sanitary District POTW (pdf) (3.2 MB),ME0101842,11/16/2016,Sabattus,Sabattus Sanitary District POTW (pdf) (3.2 MB),Sabattus Sanitary District POTW (pdf) (3.2 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0101842permit-2016.pdf'],final,me,"Sabattus River, Class C",, @@ -1803,8 +1791,7 @@ Portland,"Sinclair Sanitary District (pdf) (1.2 MB),MEU507814,03/03/2023,Sinclair,Sinclair Sanitary District (pdf) (1.2 MB),Sinclair Sanitary District (pdf) (1.2 MB),['https://www.epa.gov/system/files/documents/2025-06/finalmeu507814permit-2023.pdf'],final,me,"Groundwater, Class GW-A",, "Sinclair (Groundwater, Class GW-A)",Sinclair Sanitary District (pdf) (1.7 MB),MEU507814,11/02/2016,Sinclair,Sinclair Sanitary District (pdf) (1.7 MB),Sinclair Sanitary District (pdf) (1.7 MB),['https://www.epa.gov/system/files/documents/2025-07/finalmeu507814permit-2016.pdf'],final,me,"Groundwater, Class GW-A",, "Sinclair (Groundwater, Class GW-A)",Sinclair Sanitary District (pdf) (1.8 MB),MEU507814,04/18/2006,Sinclair,Sinclair Sanitary District (pdf) (1.8 MB),Sinclair Sanitary District (pdf) (1.8 MB),['https://www.epa.gov/system/files/documents/2025-09/finalmeu507814permit-2006.pdf'],final,me,"Groundwater, Class GW-A",, -"Skowhegan (Kennebec River, Class B)",Weston Holdco LLC d/b/a Weston Hydroelectric Project (Transfer from Brookfield White Pine Hydro LLC) (pdf) (1.3 MB),ME0001210,05/15/2026,Skowhegan,Weston Holdco LLC d/b/a Weston Hydroelectric Project (Transfer from Brookfield White Pine Hydro LLC) (pdf) (1.3 MB),Weston Holdco LLC d/b/a Weston Hydroelectric Project (Transfer from Brookfield White Pine Hydro LLC) (pdf) (1.3 MB),['https://www.epa.gov/system/files/documents/2026-05/finalme0001210permit-2026.pdf'],final,me,"Kennebec River, Class B",, -"Skowhegan (Kennebec River, Class B)","Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (933 KB)",ME0001210,12/26/2024,Skowhegan,"Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (933 KB)","Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (933 KB)",['https://www.epa.gov/system/files/documents/2025-06/finalme0001210permit-2024.pdf'],final,me,"Kennebec River, Class B",, +"Skowhegan (Kennebec River, Class B)",Weston Hydro Project (pdf) (933 KB),ME0001210,12/26/2024,Skowhegan,Weston Hydro Project (pdf) (933 KB),Weston Hydro Project (pdf) (933 KB),['https://www.epa.gov/system/files/documents/2025-06/finalme0001210permit-2024.pdf'],final,me,"Kennebec River, Class B",, "Skowhegan (Kennebec River, Class B)","Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (1.5 MB)",ME0001210,06/15/2018,Skowhegan,"Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (1.5 MB)","Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (1.5 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0001210permit-2018.pdf'],final,me,"Kennebec River, Class B",, "Skowhegan (Kennebec River, Class B)","Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (1.9 MB)",ME0001210,07/24/2013,Skowhegan,"Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (1.9 MB)","Brookfield White Pine Hydro, LLC - Weston Hydro Project (pdf) (1.9 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0001210permit-2013.pdf'],final,me,"Kennebec River, Class B",, "Skowhegan (Kennebec River, Class B)","FPL Energy Maine Hydro, LLC - Weston Hydro Project (pdf) (34 KB)",ME0001210,09/18/2008,Skowhegan,"FPL Energy Maine Hydro, LLC - Weston Hydro Project (pdf) (34 KB)","FPL Energy Maine Hydro, LLC - Weston Hydro Project (pdf) (34 KB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0001210permit-2008.pdf'],final,me,"Kennebec River, Class B",, @@ -1826,7 +1813,6 @@ Portland,"Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (3.2 MB)",ME0036960,11/02/2012,Sorrento,"Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (3.2 MB)","Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (3.2 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0036960permit-2012.pdf'],final,me,"Frenchman's Bay, Class SB",, "Sorrento (Frenchman's Bay, Class SB)","Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (2.7 MB)",ME0036960,03/25/2009,Sorrento,"Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (2.7 MB)","Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (2.7 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0036960permit-2009.pdf'],final,me,"Frenchman's Bay, Class SB",, "Sorrento (Frenchman's Bay, Class SB)","Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (2.8 MB)",ME0036960,10/15/2007,Sorrento,"Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (2.8 MB)","Great Bay Aquaculture of Maine, LLC - Preble Island (pdf) (2.8 MB)",['https://www.epa.gov/system/files/documents/2025-09/finalme0036960permit-2007.pdf'],final,me,"Frenchman's Bay, Class SB",, -"Sorrento (Atlantic Ocean at Back Cove, Class SB)","Sorrento POTW, Town of (pdf) (991 KB)",ME0102130,05/01/2026,Sorrento,"Sorrento POTW, Town of (pdf) (991 KB)","Sorrento POTW, Town of (pdf) (991 KB)",['https://www.epa.gov/system/files/documents/2026-05/finalme0102130permit-2026.pdf'],final,me,"Atlantic Ocean at Back Cove, Class SB",, "Sorrento (Atlantic Ocean at Back Cove, Class SB)","Sorrento POTW, Town of (pdf) (1.6 MB)",ME0102130,03/02/2017,Sorrento,"Sorrento POTW, Town of (pdf) (1.6 MB)","Sorrento POTW, Town of (pdf) (1.6 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0102130permit-2017.pdf'],final,me,"Atlantic Ocean at Back Cove, Class SB",, "Sorrento (Atlantic Ocean at Back Cove, Class SB)","Sorrento POTW, Town of (Minor Revision) (pdf) (360 KB)",ME0102130,08/25/2015,Sorrento,"Sorrento POTW, Town of (Minor Revision) (pdf) (360 KB)","Sorrento POTW, Town of (Minor Revision) (pdf) (360 KB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0102130permitmod3-2015.pdf'],final,me,"Atlantic Ocean at Back Cove, Class SB",, "Sorrento (Atlantic Ocean at Back Cove, Class SB)","Sorrento POTW, Town of (Minor Revision) (pdf) (349 KB)",ME0102130,08/14/2015,Sorrento,"Sorrento POTW, Town of (Minor Revision) (pdf) (349 KB)","Sorrento POTW, Town of (Minor Revision) (pdf) (349 KB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0102130permitmod2-2015.pdf'],final,me,"Atlantic Ocean at Back Cove, Class SB",, @@ -1874,7 +1860,6 @@ Portland,"Middle Beach Group, The (pdf) (4.4 MB)",ME0002682,05/19/2009,Southport,"Middle Beach Group, The (pdf) (4.4 MB)","Middle Beach Group, The (pdf) (4.4 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0002682permit-2009.pdf'],final,me,"Pig Cove, Class SB",, "Southport (Cape Newagen Harbor, Atlantic Ocean, Class SB)","Newagen Seaside Inn, Inc. (pdf) (2.1 MB)",ME0021229,11/03/2011,Southport,"Newagen Seaside Inn, Inc. (pdf) (2.1 MB)","Newagen Seaside Inn, Inc. (pdf) (2.1 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0021229permit-2011.pdf'],final,me,"Cape Newagen Harbor, Atlantic Ocean, Class SB",, "Southport (Pig Cove, Class SB)",North End Assoc. (pdf) (5.7 MB),ME0037079,09/29/2009,Southport,North End Assoc. (pdf) (5.7 MB),North End Assoc. (pdf) (5.7 MB),['https://www.epa.gov/system/files/documents/2025-08/finalme0037079permit-2009.pdf'],final,me,"Pig Cove, Class SB",, -"Southport (Townsend Gut, Atlantic Ocean, Class SB)","Ocean Gate Inn, LLC (Transfer from Radify Southport LLC) (pdf) (2 MB)",ME0036862,05/15/2026,Southport,"Ocean Gate Inn, LLC (Transfer from Radify Southport LLC) (pdf) (2 MB)","Ocean Gate Inn, LLC (Transfer from Radify Southport LLC) (pdf) (2 MB)",['https://www.epa.gov/system/files/documents/2026-05/finalme0036862permit-transfer-2026.pdf'],final,me,"Townsend Gut, Atlantic Ocean, Class SB",, "Southport (Townsend Gut, Atlantic Ocean, Class SB)","Radify Southport LLC - Ocean Gate Inn - Overboard Discharge (Transfer from TWG Southport, LLC) (pdf) (1.6 MB)",ME0036862,03/03/2023,Southport,"Radify Southport LLC - Ocean Gate Inn - Overboard Discharge (Transfer from TWG Southport, LLC) (pdf) (1.6 MB)","Radify Southport LLC - Ocean Gate Inn - Overboard Discharge (Transfer from TWG Southport, LLC) (pdf) (1.6 MB)",['https://www.epa.gov/system/files/documents/2025-06/finalme0036862permitandtransfer-2023.pdf'],final,me,"Townsend Gut, Atlantic Ocean, Class SB",, "Southport (Townsend Gut, Atlantic Ocean, Class SB)","TWG Southport, LLC - Ocean Gate Resort - Overboard Discharge (pdf) (1.3 MB)",ME0036862,01/11/2022,Southport,"TWG Southport, LLC - Ocean Gate Resort - Overboard Discharge (pdf) (1.3 MB)","TWG Southport, LLC - Ocean Gate Resort - Overboard Discharge (pdf) (1.3 MB)",['https://www.epa.gov/system/files/documents/2025-06/finalme0036862permit-2022.pdf'],final,me,"Townsend Gut, Atlantic Ocean, Class SB",, "Southport (Townsend Gut, Atlantic Ocean, Class SB)","TWG Southport, LLC (Transfer from Gem Hospitality Group, LLC) (pdf) (2.9 MB)",ME0036862,01/16/2018,Southport,"TWG Southport, LLC (Transfer from Gem Hospitality Group, LLC) (pdf) (2.9 MB)","TWG Southport, LLC (Transfer from Gem Hospitality Group, LLC) (pdf) (2.9 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalme0036862permittransfer-2018.pdf'],final,me,"Townsend Gut, Atlantic Ocean, Class SB",, @@ -2078,12 +2063,6 @@ Togus (Togus Stream),York Sewer District (pdf) (2.8 MB),ME0101222,05/31/2006,York,York Sewer District (pdf) (2.8 MB),York Sewer District (pdf) (2.8 MB),['https://www.epa.gov/system/files/documents/2025-09/finalme0101222permit-2006.pdf'],final,me,"Cape Neddick Harbor, Class SB",, "York (Chase's Pond, Class GPA)",York Water District - Chase's Pond (pdf) (1.8 MB),ME0002721,12/16/2019,York,York Water District - Chase's Pond (pdf) (1.8 MB),York Water District - Chase's Pond (pdf) (1.8 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0002721permit-2019.pdf'],final,me,"Chase's Pond, Class GPA",, "York (Chase's Pond, Class GPA)",York Water District - Chase's Pond (pdf) (3 MB),ME0002721,10/21/2014,York,York Water District - Chase's Pond (pdf) (3 MB),York Water District - Chase's Pond (pdf) (3 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0002721permit-2014.pdf'],final,me,"Chase's Pond, Class GPA",, -,Mad Dam Treatment Plant,ME0102581,,Caribou,Mad Dam Treatment Plant,Mad Dam Treatment Plant,['https://www.epa.gov/me/draft-permit-mad-dam-treatment-plant-caribou-me-me0102581'],draft,me,,Caribou,05/27/2026 - 06/26/2026 -,Houlton Water Company,ME0101290,,Houlton,Houlton Water Company,Houlton Water Company,['https://www.epa.gov/me/draft-permit-houlton-water-company-houlton-me-me0101290'],draft,me,,Houlton,05/19/2026 - 06/18/2026 -,"Oxford, Town of",ME0102873,,Oxford,"Oxford, Town of","Oxford, Town of",['https://www.epa.gov/me/draft-permit-town-oxford-oxford-me-me0102873-0'],draft,me,,Oxford,05/18/2026 - 06/18/2026 -,Mechanic Falls Sanitary District,ME0100391,,Mechanic Falls,Mechanic Falls Sanitary District,Mechanic Falls Sanitary District,['https://www.epa.gov/me/draft-permit-mechanic-falls-sanitary-district-mechanic-falls-me-me0100391'],draft,me,,Mechanic Falls,05/15/2026 - 06/15/2026 -,"ND Paper, Inc.",ME0002054,,Rumford,"ND Paper, Inc.","ND Paper, Inc.",['https://www.epa.gov/me/draft-permit-nd-paper-inc-rumford-me-me0002054'],draft,me,,Rumford,05/14/2026 - 06/12/2026 -,"Cold Brook Energy, Inc.",ME0002267,,Hampden,"Cold Brook Energy, Inc.","Cold Brook Energy, Inc.",['https://www.epa.gov/me/draft-permit-cold-brook-energy-inc-hampden-me-me0002267'],draft,me,,Hampden,05/11/2026 - 06/13/2026 ,"Caverly Farms, LLC",ME0037109,,Clinton,"Caverly Farms, LLC","Caverly Farms, LLC",['https://www.epa.gov/me/draft-permit-caverly-farms-llc-clinton-me-me0037109'],draft,me,,Clinton,04/21/2026 - 05/21/2026 ,Blue Ridge Properties LLC dba Begin Mobile Home Park Overboard Discharge,ME0037010,,Sabattus,Blue Ridge Properties LLC dba Begin Mobile Home Park Overboard Discharge,Blue Ridge Properties LLC dba Begin Mobile Home Park Overboard Discharge,['https://www.epa.gov/me/draft-permit-blue-ridge-properties-llc-dba-begin-mobile-home-park-overboard-discharge-sabattus'],draft,me,,Sabattus,04/10/2026 - 05/11/2026 ,New Sharon Water District,ME0023671,,New Sharon,New Sharon Water District,New Sharon Water District,['https://www.epa.gov/me/draft-permit-new-sharon-water-district-new-sharon-me-me0023671'],draft,me,,New Sharon,04/02/2026 - 05/04/2026 @@ -2102,9 +2081,9 @@ Togus (Togus Stream),Smutty Nose Island Club, Inc. D/B/A Monhegan House",ME0037427,,Monhegan,"Smutty Nose Island Club, Inc. D/B/A Monhegan House","Smutty Nose Island Club, Inc. D/B/A Monhegan House",['https://www.epa.gov/me/draft-permit-smutty-nose-island-club-inc-dba-monhegan-house-monhegan-me-me0037427'],draft,me,,Monhegan,03/09/2026 - 04/08/2026 ,"Hampden CSO - Souadabscook Stream Pump Station, Town of",ME0102512,,Hampden,"Hampden CSO - Souadabscook Stream Pump Station, Town of","Hampden CSO - Souadabscook Stream Pump Station, Town of",['https://www.epa.gov/me/draft-permit-town-hampden-cso-souadabscook-stream-pump-station-hampden-me-me0102512'],draft,me,,Hampden,02/26/2026 - 03/30/2026 ,Huhtamaki Inc.,ME0037389,,Waterville,Huhtamaki Inc.,Huhtamaki Inc.,['https://www.epa.gov/me/draft-permit-huhtamaki-inc-waterville-me-me0037389-0'],draft,me,,Waterville,02/26/2026 - 03/30/2026 -,"Gardiner WWTF, City of (pdf) (2 MB)",ME0101702,,Gardiner,"Gardiner WWTF, City of (pdf) (2 MB)","Gardiner WWTF, City of (pdf) (2 MB)",['https://www.epa.gov/system/files/documents/2026-02/draftme0101702permit-2026.pdf'],draft,me,,Gardiner,02/25/2026 - 03/25/2026 -,Portland Water District - Westbrook Wastewater Treatment Facility (pdf) (2.9 MB),ME0100846,,Westbrook,Portland Water District - Westbrook Wastewater Treatment Facility (pdf) (2.9 MB),Portland Water District - Westbrook Wastewater Treatment Facility (pdf) (2.9 MB),['https://www.epa.gov/system/files/documents/2026-02/draftme0100846permit-2026.pdf'],draft,me,,Westbrook,02/18/2026 - 03/18/2026 -,ReGenerate Livermore Falls (pdf) (1.2 MB),ME0023710,,Livermore Falls,ReGenerate Livermore Falls (pdf) (1.2 MB),ReGenerate Livermore Falls (pdf) (1.2 MB),['https://www.epa.gov/system/files/documents/2026-02/draftme0023710permit-2026.pdf'],draft,me,,Livermore Falls,02/02/2026 - 03/06/2026 +,"Gardiner WWTF, City of",ME0101702,,Gardiner,"Gardiner WWTF, City of","Gardiner WWTF, City of",['https://www.epa.gov/me/draft-permit-city-gardiner-wwtf-gardiner-me-me0101702'],draft,me,,Gardiner,02/25/2026 - 03/25/2026 +,Portland Water District - Westbrook Wastewater Treatment Facility,ME0100846,,Westbrook,Portland Water District - Westbrook Wastewater Treatment Facility,Portland Water District - Westbrook Wastewater Treatment Facility,['https://www.epa.gov/me/draft-permit-portland-water-district-westbrook-wastewater-treatment-facility-westbrook-me'],draft,me,,Westbrook,02/18/2026 - 03/18/2026 +,ReGenerate Livermore Falls,ME0023710,,Livermore Falls,ReGenerate Livermore Falls,ReGenerate Livermore Falls,['https://www.epa.gov/me/draft-permit-regenerate-livermore-falls-livermore-falls-me-me0023710'],draft,me,,Livermore Falls,02/02/2026 - 03/06/2026 ,Cooke Aquaculture USA Inc. - Bingham Fish Hatchery (Extended) (pdf) (3.3 MB),ME0110159,,Bingham,Cooke Aquaculture USA Inc. - Bingham Fish Hatchery (Extended) (pdf) (3.3 MB),Cooke Aquaculture USA Inc. - Bingham Fish Hatchery (Extended) (pdf) (3.3 MB),['https://www.epa.gov/system/files/documents/2026-02/draftme0110159permit-extension-2026.pdf'],draft,me,,Bingham,01/29/2026 - 02/09/2026 ,Sunoco Midstream LLC South Portland (pdf) (710 KB),ME0022314,,South Portland,Sunoco Midstream LLC South Portland (pdf) (710 KB),Sunoco Midstream LLC South Portland (pdf) (710 KB),['https://www.epa.gov/system/files/documents/2026-01/draftme0022314permit-2026.pdf'],draft,me,,South Portland,01/23/2026 - 02/23/2026 ,South Portland Terminals LLC (pdf) (432 KB),ME0000485,,South Portland,South Portland Terminals LLC (pdf) (432 KB),South Portland Terminals LLC (pdf) (432 KB),['https://www.epa.gov/system/files/documents/2026-01/draftme0000485permit-2026.pdf'],draft,me,,South Portland,01/23/2026 - 02/23/2026 @@ -3199,8 +3178,7 @@ Norton (Three Mile River),Tweave LLC (pdf) (2.1 MB),MA0005355,04/12/2011,Norton,Tweave LLC (pdf) (2.1 MB),Tweave LLC (pdf) (2.1 MB),['https://www.epa.gov/system/files/documents/2025-08/finalma0005355permit-2011.pdf'],final,ma,Wading River,, Norton (Rumford River (Taunton River Watershed - MA62-40)),Wheaton College WWTF (pdf) (2.7 MB),MA0026182,12/04/2014,Norton,Wheaton College WWTF (pdf) (2.7 MB),Wheaton College WWTF (pdf) (2.7 MB),['https://www.epa.gov/system/files/documents/2025-07/finalma0026182permit-2014.pdf'],final,ma,Rumford River,, Norton (Rumford River (Taunton River Watershed - MA62-40)),Wheaton College WWTF (pdf) (52 KB),MA0026182,08/19/2004,Norton,Wheaton College WWTF (pdf) (52 KB),Wheaton College WWTF (pdf) (52 KB),['https://www.epa.gov/system/files/documents/2025-09/ma0026182permit-2004.pdf'],final,ma,Rumford River,, -"Norwood (Neponset River (MA73-01), Boston Harbor Watershed)","Bird, Incorporated d/b/a CertainTeed (pdf) (6.3 MB)",MA0003531,05/27/2026,Norwood,"Bird, Incorporated d/b/a CertainTeed (pdf) (6.3 MB)","Bird, Incorporated d/b/a CertainTeed (pdf) (6.3 MB)",['https://www.epa.gov/system/files/documents/2026-05/finalma0003531permit-2026.pdf'],final,ma,Neponset River,, -"Norwood (Neponset River (MA73-01), Boston Harbor Watershed)","Bird, Inc. d/b/a Certainteed Corporation (pdf) (1.3 MB)",MA0003531,01/13/2015,Norwood,"Bird, Inc. d/b/a Certainteed Corporation (pdf) (1.3 MB)","Bird, Inc. d/b/a Certainteed Corporation (pdf) (1.3 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalma0003531permit-2015.pdf'],final,ma,Neponset River,, +Norwood (Neponset River (MA73-01) Boston Harbor Watershed),"Bird, Inc. d/b/a Certainteed Corporation (pdf) (1.3 MB)",MA0003531,01/13/2015,Norwood,"Bird, Inc. d/b/a Certainteed Corporation (pdf) (1.3 MB)","Bird, Inc. d/b/a Certainteed Corporation (pdf) (1.3 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalma0003531permit-2015.pdf'],final,ma,Neponset River,, Norwood (Neponset River),Bird Incoporated d/b/a Certainteed (pdf) (135 KB),MA0003531,09/20/2005,Norwood,Bird Incoporated d/b/a Certainteed (pdf) (135 KB),Bird Incoporated d/b/a Certainteed (pdf) (135 KB),['https://www.epa.gov/system/files/documents/2025-09/ma0003531permit-2005.pdf'],final,ma,Neponset River,, Norwood (Neponset River),Factory Mutual Engineering Corporation (pdf) (158 KB),MA0003638,03/26/2002,Norwood,Factory Mutual Engineering Corporation (pdf) (158 KB),Factory Mutual Engineering Corporation (pdf) (158 KB),['https://www.epa.gov/system/files/documents/2025-09/norwoodpermit-2002.pdf'],final,ma,Neponset River,, Orange (Millers River (Segment MA35-04)),Orange Wastewater Treatment Facility (pdf) (3.2 MB)
Coverage transferred to MA Medium WWTF GP on 04/01/2023,MA0101257,01/04/2021,Orange,Orange Wastewater Treatment Facility (pdf) (3.2 MB)
Coverage transferred to MA Medium WWTF GP on 04/01/2023,Orange Wastewater Treatment Facility (pdf) (3.2 MB) Coverage transferred to MA Medium WWTF GP on 04/01/2023,"['https://www.epa.gov/system/files/documents/2025-06/finalma0101257permit-2021.pdf', 'https://www.epa.gov/npdes-permits/region-1-final-medium-wastewater-treatment-facilities-general-permit-massachusetts']",final,ma,Millers River,, @@ -3809,7 +3787,7 @@ Woonsocket (Blackstone River),Woonsocket Regional Wastewater Commission (pdf) (1.1 MB),RI0100111,09/18/2008,Woonsocket,Woonsocket Regional Wastewater Commission (pdf) (1.1 MB),Woonsocket Regional Wastewater Commission (pdf) (1.1 MB),['https://www.epa.gov/system/files/documents/2025-08/finalri0100111permit-2008.pdf'],final,ri,Blackstone River,, "Woonsocket (Blackstone River, Class B1)",Woonsocket Water Treatment Plant (pdf) (2 MB),RI0001627,12/14/2017,Woonsocket,Woonsocket Water Treatment Plant (pdf) (2 MB),Woonsocket Water Treatment Plant (pdf) (2 MB),['https://www.epa.gov/system/files/documents/2025-07/finalri0001627permit-2017.pdf'],final,ri,"Blackstone River, Class B1",, ,"Blount Fine Foods, Warren, RI
Public Notice Extension (pdf) (278 KB) ",RI0001121,,Warren,"Blount Fine Foods, Warren, RI
Public Notice Extension (pdf) (278 KB) ","Blount Fine Foods, Warren, RI Public Notice Extension (pdf) (278 KB) ","['https://www.epa.gov/ri/draft-permit-blount-fine-foods-warren-ri-ri0001121', 'https://www.epa.gov/system/files/documents/2026-04/draftri0001121permit-extension-2026.pdf']",draft,ri,,Warren,03/10/2026 - 04/17/2026 (Extended to 05/18/2026) -,Woonsocket Regional Wastewater Commission (pdf) (4.5 MB),RI0100111,,Woonsocket,Woonsocket Regional Wastewater Commission (pdf) (4.5 MB),Woonsocket Regional Wastewater Commission (pdf) (4.5 MB),['https://www.epa.gov/system/files/documents/2026-02/draftri0100111permit-2026.pdf'],draft,ri,,Woonsocket,02/10/2026 - 03/10/2026 +,Woonsocket Regional Wastewater Commission,RI0100111,,Woonsocket,Woonsocket Regional Wastewater Commission,Woonsocket Regional Wastewater Commission,['https://www.epa.gov/ri/draft-permit-woonsocket-regional-wastewater-commission-woonsocket-ri-ri0100111'],draft,ri,,Woonsocket,02/10/2026 - 03/10/2026 ,Fox Island LLC (pdf) (1.1 MB),RI0023736,,North Kingstown,Fox Island LLC (pdf) (1.1 MB),Fox Island LLC (pdf) (1.1 MB),['https://www.epa.gov/system/files/documents/2025-12/draftrii0023736permit-2025.pdf'],draft,ri,,North Kingstown,12/15/2025 - 01/23/2026 ,"Metals Recycling, LLC (pdf) (2.7 MB)",RI0023485,,Johnston,"Metals Recycling, LLC (pdf) (2.7 MB)","Metals Recycling, LLC (pdf) (2.7 MB)",['https://www.epa.gov/system/files/documents/2025-12/draftri0023485permit-2025.pdf'],draft,ri,,Johnston,12/15/2025 - 01/23/2026 ,"Kenyon Industries, Incorporated (Modification) (pdf) (1.6 MB)",RI0000191,,Kenyon,"Kenyon Industries, Incorporated (Modification) (pdf) (1.6 MB)","Kenyon Industries, Incorporated (Modification) (pdf) (1.6 MB)",['https://www.epa.gov/system/files/documents/2025-12/draftri0000191permitmod-2025.pdf'],draft,ri,,Kenyon,11/12/2025 - 12/11/2025 diff --git a/docs/data/MADEP_staff_SODA_sample.csv b/docs/data/MADEP_staff_SODA_sample.csv index 95a711a1..f10dc35d 100644 --- a/docs/data/MADEP_staff_SODA_sample.csv +++ b/docs/data/MADEP_staff_SODA_sample.csv @@ -1,11 +1,11 @@ bargaining_group_title,contract,department_division,department_location_zip_code,name_first,name_last,pay_base_actual,pay_buyout_actual,pay_overtime_actual,pay_total_actual,position_title,position_type,year -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Marc,Wolman,92239.0,0.0,0.0,92239.0,Environmental Engineer V,Full Time Employee,2014 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),01606,Susan,Connors,45489.54,0.0,0.0,45489.54,Environmental Analyst IV,Full Time Employee,2015 -Managers (EXE),Managers (EXE) (M99),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Edward,Kunce,105288.68,0.0,0.0,105288.68,Program Manager Specialist IX,Full Time Employee,2010 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),018430000,Nelson,Gomez,26366.94,0.0,0.0,26366.94,Chemist III,Full Time Employee,2013 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),018872941,Ronald,Stelline,0.0,2614.29,0.0,2614.29,Environmental Analyst IV,Full Time Employee,2016 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Susannah,King,92116.78,0.0,0.0,92116.78,Environmental Analyst V,Full Time Employee,2016 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,John,Reinhardt,51626.07,11513.74,7607.02,70746.83,Regional Planner V,Full Time Employee,2015 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),016082022,Michael,Penny,69493.36,0.0,0.0,69493.36,Environmental Analyst III,Full Time Employee,2011 -Post Retiree,Post Retiree (PRT),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Madelyn,Morris,18410.86,0.0,0.0,18410.86,Counsel II,Part Time Employee,2023 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),016082022,Xiaoning,Chen,73531.72,0.0,0.0,73531.72,Environmental Engineer IV,Full Time Employee,2010 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),023471676,Kathryn,Sousa,6020.65,0.0,0.0,6020.65,Environmental Analyst IV,Full Time Employee,2024 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),01606,Arthur,Johnson,98876.37,0.0,0.0,98876.37,Environmental Analyst V,Full Time Employee,2016 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Shi,Chen,55795.41,0.0,0.0,55795.41,Environmental Analyst II,Full Time Employee,2015 +NAGE - Professional Admin.,NAGE - Professional Admin. (06),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Laura,Swain,42495.75,0.0,0.0,42495.75,Counsel II,Part Time Employee,2012 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),018430000,Zohreh,Shafiei,34093.04,0.0,0.0,34093.04,Environmental Analyst III,Full Time Employee,2024 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),018430000,Beena,Chandy,85317.48,0.0,0.0,85317.48,Environmental Analyst II,Full Time Employee,2021 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),018872941,John,Fitzgerald,92316.9,0.0,4195.01,104159.41,Environmental Engineer Vi,Full Time Employee,2012 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Steve,Hallem,85408.42,0.0,0.0,85408.42,Environmental Analyst IV,Full Time Employee,2014 +Managers (EXE),Managers (EXE) (M99),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Teresa,Sousa,2195.44,2034.43,0.0,4229.87,Secretariat,Full Time Employee,2010 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),01606,Andrew,Salant,24493.25,0.0,0.0,24493.25,Environmental Analyst II,Full Time Employee,2024 diff --git a/docs/data/MA_bill_cluster_labels.csv b/docs/data/MA_bill_cluster_labels.csv new file mode 100644 index 00000000..9639b788 --- /dev/null +++ b/docs/data/MA_bill_cluster_labels.csv @@ -0,0 +1,26 @@ +cluster_id,label,n_bills,n_env_bills +0,Community and Environmental Policy,1983,49 +1,"Patient Safety, Staff Autonomy, Transparency",1289,1 +2,Solid Waste Reduction and Recycling,463,178 +3,Student Education and Well-being,1572,7 +4,Infrastructure Investment and Economic Growth,1124,8 +5,Data Privacy and Security,1358,4 +6,Special Commissions and Studies,1013,14 +7,Tax Reform and Exemptions,1270,1 +8,Local Affordable Housing Options,1148,7 +9,"Youth, Crime, and Public Safety",1175,5 +10,Mental and Behavioral Health Access,629,0 +11,Firearms Regulation and Ownership,668,6 +12,Public Safety Personnel Retirement,1256,0 +13,"Public Health, Economy, Environment",651,13 +14,Massachusetts Clean Energy Transition,799,235 +15,"Prescription Drug Pricing, Access, Safety",781,1 +16,Wage Theft and Worker Protections,1281,2 +17,Elder Long-Term Care Services,921,0 +18,Healthcare Coverage and Affordability,1142,0 +19,State Funding for Programs,862,12 +20,Local Clean Energy Transition,1058,54 +21,Automobile Insurance Premiums and Surcharges,745,12 +22,State Fiscal and Policy Initiatives,1084,29 +23,Authorizing Local Liquor Licenses,521,0 +24,Automotive Safety and Technology Regulation,1123,5 diff --git a/docs/data/MA_bill_emb_mean.npy b/docs/data/MA_bill_emb_mean.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee4346d4ba938bac5dd6859a1a137dfe18b9a286 GIT binary patch literal 3200 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 CUJTa& literal 0 HcmV?d00001 diff --git a/docs/data/MA_bill_kmeans.joblib b/docs/data/MA_bill_kmeans.joblib new file mode 100644 index 0000000000000000000000000000000000000000..e4745317194d76a85b25ced563d5b3e293ef0ab8 GIT binary patch literal 181191 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 F{{n7T85#fp literal 0 HcmV?d00001 diff --git a/docs/data/MA_legislature_bills_sample.csv b/docs/data/MA_legislature_bills_sample.csv new file mode 100644 index 00000000..552eed6b --- /dev/null +++ b/docs/data/MA_legislature_bills_sample.csv @@ -0,0 +1,104 @@ +,bill_id,bill_number,bill_prefix,general_court,title,sponsor_name,status,passed +0,H4999,4999,H,193,An Act promoting access to midwifery care and out-of-hospital birth options,Midwifery Care and Out-of-Hospital options,"Signed by the Governor, Chapter 186 of the Acts of 2024",1 +1,H4773,4773,H,193,An Act promoting access to midwifery care and out-of-hospital birth options,House Committee on Ways and Means,"Published as amended, see H4785",0 +2,S1405,1405,S,193,An Act relative to newborn screenings for congenital cytomegalovirus,Joan B. Lovely,No further action taken,0 +3,S607,607,S,193,An Act to increase access to nurse-midwifery services,Brendan P. Crighton,No further action taken,0 +4,H1069,1069,H,193,An Act to increase access to nurse-midwifery services,Kay Khan,Senate concurred,0 +5,H1202,1202,H,193,An Act to preserve special needs trusts for disabled seniors,Kate Hogan,"New draft substituted, see H4841",0 +6,S108,108,S,193,An Act establishing guardians as providers of medical care to support the rights of incapacitated persons,Joan B. Lovely,"Accompanied a study order, see S2795",0 +7,H5033,5033,H,193,An Act to improve quality and oversight of long-term care,Long Term Care,"Signed by the Governor, Chapter 197 of the Acts of 2024",1 +8,H4800,4800,H,193,"An Act making appropriations for the fiscal year 2025 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements","General Appropriation Bill, FY25",Item 7066-0036 passed over veto - 155 YEAS to 2 NAYS (See YEA and NAY No. 191),0 +9,H2007,2007,H,193,An Act enabling physician assistants to authorize psychiatric holds and ensure adequate training on their use,Edward R. Philips,"Accompanied a study order, see H4897",0 +10,H4058,4058,H,193,An Act expanding access to mental health services,Marjorie C. Decker,"Accompanied a study order, see H4879",0 +11,H5100,5100,H,193,An Act relative to strengthening Massachusetts’ economic leadership,Economic Development,"For actions on the sections returned with recommendations of amendment, see H5111",0 +12,H2135,2135,H,193,An Act relative to removing barriers to care for physician assistants,Christine P. Barber,Accompanied S1354,0 +13,S1267,1267,S,193,An Act expanding access to mental health services,Jacob R. Oliveira,"Accompanied a study order, see S2642",0 +14,H2217,2217,H,193,An Act relative to limited service clinics,Kay Khan,"Accompanied a study order, see H4739",0 +15,H1950,1950,H,193,An Act relative to physician assistant non-competes,Jon Santiago,"Accompanied a study order, see H4570",0 +16,H2812,2812,H,193,An Act establishing fairness for agricultural laborers,Carlos González,"Accompanied a study order, see H5045",0 +17,S1837,1837,S,193,An Act establishing fairness for agricultural laborers,Adam Gomez,"Accompanied a study order, see H5045",0 +18,S2673,2673,S,193,An Act relative to social work uplifting practices and exam removal.,Joint Committee on Higher Education,No further action taken,0 +19,H4451,4451,H,193,An Act relative to social work uplifting practices and exam removal,Joint Committee on Higher Education,No further action taken,0 +20,S2227,2227,S,193,An Act to end debt-based driving restrictions and remove economic roadblocks,Julian Cyr,"Accompanied a study order, see S2796",0 +21,H3314,3314,H,193,An Act to end debt-based driving restrictions and remove economic roadblocks,Brandy Fluker Oakley,"Accompanied a study order, see H4928",0 +22,H1434,1434,H,193,An Act reducing barriers to employment through credit discrimination,Josh S. Cutler,No further action taken,0 +23,S673,673,S,193,An Act ensuring support groups are part of the pathway of care following the annual mental health wellness exam,Joan B. Lovely,"Accompanied a study order, see H4634",0 +24,H1075,1075,H,193,An Act ensuring support groups are part of the pathway of care following the annual mental health wellness exam,Michael P. Kushmerek,"Accompanied a study order, see H4854",0 +25,H946,946,H,193,An Act to increase access to lactation care and services,Christine P. Barber,"Accompanied a study order, see H4691",0 +26,S691,691,S,193,An Act to increase access to lactation care and services,Susan L. Moran,"Accompanied a study order, see H4634",0 +27,H5077,5077,H,193,making appropriations for the fiscal year 2024 to provide for supplementing certain existing appropriations and for certain other activities and projects,House Committee on Ways and Means,"Signed by the Governor, Chapter 248 of the Acts of 2024",1 +28,H1918,1918,H,193,An Act relative to employment protections for victims of abusive behavior,Jay D. Livingstone,No further action taken,0 +29,S1152,1152,S,193,An Act relative to employment protections for victims of abusive behavior,Cynthia Stone Creem,Accompanied H1918,0 +30,H2216,2216,H,193,An Act relative to dental hygienists,Kay Khan,"Accompanied a study order, see H4739",0 +31,S1429,1429,S,193,An Act relative to dental hygienists,Michael O. Moore,"Accompanied a study order, see S2648",0 +32,H3880,3880,H,193,An Act relative to dental hygienist reciprocal licensure,Tackey Chan,"New draft substituted, see H4842",0 +33,H2241,2241,H,193,An Act enabling trained dental hygienists to administer dermal fillers and botox,Frank A. Moran,"Accompanied a study order, see H4739",0 +34,S664,664,S,193,An Act relative to the sustainability of public health dental hygienists through adequate reimbursements,Robyn K. Kennedy,"Accompanied a study order, see H4634",0 +35,H2255,2255,H,193,An Act relative to the sustainability of public health dental hygienists through adequate reimbursements,Smitty Pignatelli,"Accompanied a study order, see H4739",0 +36,S1379,1379,S,193,An Act to improve oral health for all Massachusetts residents,Adam Gomez,"Accompanied a new draft, see S2740",0 +37,S1357,1357,S,193,An Act enabling trained dental hygienists to administer dermal fillers and botox,Julian Cyr,"Accompanied a study order, see S2648",0 +38,H2215,2215,H,193,An Act protecting children from harmful diet pills and muscle-building supplements,Kay Khan,No further action taken,0 +39,H5159,5159,H,193,An Act enhancing the market review process,Market Review Process,"Signed by the Governor, Chapter 343 of the Acts of 2024",1 +40,H4799,4799,H,193,An Act making appropriations for the fiscal year 2024 to provide for supplementing certain existing appropriations and for certain other activities and projects,,"Signed by the Governor, Chapter 206 of the Acts of 2024",1 +41,H4442,4442,H,193,An Act creating a special legislative commission to study barriers to job retention for low-income workers,Joint Committee on Labor and Workforce Development,No further action taken,0 +42,S2475,2475,S,193,An Act relative to the licensure of behavior analysts,Joint Committee on Consumer Protection and Professional Licensure,No further action taken,0 +43,S376,376,S,193,An Act relative to Massachusetts home care eligibility,Patricia D. Jehlen,No further action taken,0 +44,S1244,1244,S,193,An Act building resiliency in communities through mental health,Julian Cyr,Accompanied H1985,0 +45,H1985,1985,H,193,An Act building resiliency in communities through mental health,Brandy Fluker Oakley,No further action taken,0 +46,S345,345,S,193,An Act to update accuracy of membership to the state advisory council on early education and care,Rebecca L. Rausch,No further action taken,0 +47,H135,135,H,193,An Act establishing basic needs assistance for Massachusetts immigrant residents ,Antonio F. D. Cabral,No further action taken,0 +48,S75,75,S,193,An Act to lift kids out of deep poverty,Sal N. DiDomenico,No further action taken,0 +49,H144,144,H,193,An Act to lift kids out of deep poverty,Marjorie C. Decker,No further action taken,0 +50,S1890,1890,S,193,An Act excluding the Segal AmeriCorps Education Award from taxable income,Susan L. Moran,No further action taken,0 +51,H1748,1748,H,193,"An Act relative to access to a decedent's electronic mail accounts + +",Jeffrey N. Roy,"Accompanied a study order, see H4517",0 +52,S930,930,S,193,An Act relative to access to a decedent's electronic mail accounts,Cynthia Stone Creem,"Accompanied a study order, see S2612",0 +53,S1362,1362,S,193,An Act relative to the Massachusetts lead law and promoting equal access to lead-free housing,James B. Eldridge,"Accompanied a study order, see S2648",0 +54,H2223,2223,H,193,An Act relative to the Massachusetts lead law and promoting equal access to lead-free housing,David Henry Argosky LeBoeuf,"Accompanied a study order, see H4739",0 +55,S1156,1156,S,193,An Act protecting an employee's right to rebuttal of personnel records,Sal N. DiDomenico,No further action taken,0 +56,H1881,1881,H,193,An Act clarifying the wage act to protect hospital workers from being deprived of their wages,Denise C. Garlick,"Accompanied a study order, see H5014",0 +57,H1891,1891,H,193,An Act clarifying the prevailing wage act to protect actions by the attorney general,Kenneth I. Gordon,No further action taken,0 +58,H1088,1088,H,193,An Act relative to greater fairness in insurance,Jay D. Livingstone,"Accompanied a study order, see H4705",0 +59,S1161,1161,S,193,An Act clarifying the prevailing wage act to protect actions by the attorney general,Sal N. DiDomenico,No further action taken,0 +60,S1177,1177,S,193,An Act clarifying the wage act to protect hospital workers from being deprived of their wages,Paul R. Feeney,Accompanied H1881,0 +61,H4282,4282,H,193,An Act relative to defense against abusive waivers,Joint Committee on Labor and Workforce Development,No further action taken,0 +62,H1892,1892,H,193,An Act relative to anti-retaliation protections for public employees,Kenneth I. Gordon,"Accompanied a study order, see H5043",0 +63,H1886,1886,H,193,An Act protecting an employee's right to rebuttal of personnel records,Kenneth I. Gordon,Accompanied S1156,0 +64,H1709,1709,H,193,An Act to further protect employees through a private right of action,Tram T. Nguyen,"Accompanied a study order, see H4517",0 +65,H4970,4970,H,193,An Act to ensure legal parentage equality,Legal Parentage Equality,"Signed by the Governor, Chapter 166 of the Acts of 2024",1 +66,S99,99,S,193,An Act creating a special commission to study the current refugee resettlement infrastructure and ensure the successful integration of refugees in Massachusetts ,Robyn K. Kennedy,No further action taken,0 +67,H1350,1350,H,193,An Act to guarantee a tenant’s first right of refusal,Jay D. Livingstone,No further action taken,0 +68,S880,880,S,193,An Act to guarantee a tenant’s first right of refusal,Patricia D. Jehlen,No further action taken,0 +69,S864,864,S,193,"An Act promoting access to counsel and housing stability in Massachusetts +",Sal N. DiDomenico,No further action taken,0 +70,H4977,4977,H,193,An Act relative to the Affordable Homes Act,Affordable Homes Act,"Signed by the Governor, Chapter 150 of the Acts of 2024",1 +71,H4360,4360,H,193,An Act promoting access to counsel and housing stability in Massachusetts,Joint Committee on the Judiciary,No further action taken,0 +72,H4429,4429,H,193,An Act relative to fairness in debt collection,Joint Committee on Financial Services,No further action taken,0 +73,S2713,2713,S,193,An Act relative to fairness in debt collection,Senate Committee on Ways and Means,No further action taken,0 +74,H1308,1308,H,193,An Act relative to the use of credit reporting in housing,Manny Cruz,No further action taken,0 +75,S877,877,S,193,An Act relative to the use of credit reporting in housing,Adam Gomez,No further action taken,0 +76,H1302,1302,H,193,An Act relative to manufactured housing,Tackey Chan,No further action taken,0 +77,S1354,1354,S,193,An Act relative to removing barriers to care for physician assistants,Julian Cyr,No further action taken,0 +78,H4459,4459,H,193,An Act relative to strengthening Massachusetts' economic leadership,Maura T. Healey,"Accompanied a new draft, see H4722",0 +79,H4601,4601,H,193,"An Act making appropriations for the fiscal year 2025 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",,"Reported, in part, by H4800",0 +80,H2,2,H,193,"An Act making appropriations for the fiscal year 2025 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the Commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",Maura T. Healey,No further action taken,0 +81,H1253,1253,H,193,An Act relative to social work uplifting practices and exam removal ,Christine P. Barber,"Accompanied a new draft, see H4451",0 +82,S2800,2800,S,193,"An Act making appropriations for the fiscal year 2025 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",,See H4601,0 +83,S1335,1335,S,193,An Act updating the regulations governing licensed birth centers in Massachusetts,Joanne M. Comerford,"Accompanied a new draft, see H4566",0 +84,H4566,4566,H,193,An Act promoting access to midwifery care and out-of-hospital birth options,Joint Committee on Public Health,"New draft substituted, see H4773",0 +85,S1457,1457,S,193,An Act promoting access to midwifery care and out-of-hospital birth options,Rebecca L. Rausch,"Accompanied a new draft, see H4566",0 +86,S1415,1415,S,193,An Act relative to birthing justice in the Commonwealth,Liz Miranda,"Accompanied a new draft, see S2734",0 +87,H1415,1415,H,193,An Act to increase the penalty for school tardiness,Tackey Chan,"Accompanied a study order, see H4517",0 +88,H188,188,H,193,An Act establishing guardians as providers of medical care to support the rights of incapacitated persons,Sally P. Kerans,Accompanied S108,0 +89,S756,756,S,193,An Act preserving special needs trusts for disabled seniors,Patricia D. Jehlen,Accompanied H1202,0 +90,S1465,1465,S,193,An Act protecting children from harmful diet pills and muscle-building supplements,Michael F. Rush,Accompanied H2215,0 +91,S2835,2835,S,193,An Act relative to adoptions,Cynthia Stone Creem,"Accompanied a new draft, see S3009",0 +92,H4709,4709,H,193,An Act relative to adoptions,Lindsay N. Sabadosa,"Accompanied a new draft, see S3009",0 +93,H4496,4496,H,193,An Act making appropriations for the fiscal year 2024 to provide for supplementing certain existing appropriations and for certain other activities and projects,Maura T. Healey,No further action taken,0 +94,H2253,2253,H,193,An Act to improve oral health for all Massachusetts residents,Smitty Pignatelli,"Accompanied a new draft, see S2740",0 +95,H197,197,H,193,An Act creating a special commission to study the current refugee resettlement infrastructure and ensure the successful integration of refugees in Massachusetts ,David Henry Argosky LeBoeuf,Accompanied S99,0 +96,H2777,2777,H,193,An Act excluding the Segal AmeriCorps Educational Award from taxable income,"William J. Driscoll, Jr.",Accompanied S1890,0 +97,S76,76,S,193,An Act establishing basic needs assistance for Massachusetts immigrant residents,Sal N. DiDomenico,Accompanied H135,0 +98,H542,542,H,193,An Act to promote racially inclusive curriculum in schools,Tram T. Nguyen,"Accompanied a new draft, see H4519",0 +99,H3052,3052,H,193,An Act promoting the civil rights and inclusion of American Muslims in the Commonwealth,Vanna Howard,No further action taken,0 diff --git a/docs/data/MA_lobbying.md b/docs/data/MA_lobbying.md new file mode 100644 index 00000000..6c466cb0 --- /dev/null +++ b/docs/data/MA_lobbying.md @@ -0,0 +1,91 @@ +--- +title: MA Lobbying Disclosures +author: NES +layout: data_listing +ancillary: 0 +--- + +## Explore the data + +The **[MA Lobbying Explorer](https://nsanders.me/ma_lobbying_explorer/)** is an interactive browser for this dataset. Search and filter bills, employers, and lobbying firms; click any entry to see its full disclosure history and links back to the Secretary of State portal and MA Legislature website. + +- [Browse bills](https://nsanders.me/ma_lobbying_explorer/bills.html) — search by bill ID, title, or environmental relevance +- [Browse employers](https://nsanders.me/ma_lobbying_explorer/employers.html) — search by employer/client name; see all bills and spend history +- [Browse lobbyists](https://nsanders.me/ma_lobbying_explorer/lobbyists.html) — search by lobbying firm name; see all clients and bills + +--- + +## Data source + +The [MA Secretary of State](https://www.sec.state.ma.us/LobbyistPublicSearch/) publishes semi-annual lobbying disclosure filings for all registered lobbyists and lobbying entities in Massachusetts. Filers report which clients hired them, how much each client paid, and which specific bills they lobbied on behalf of each client (with chamber, bill number, title, and position — Support, Oppose, or Neutral). + +Data is available from 2005 (184th General Court) through the present, spanning 22 years across 11 legislative sessions. Each two-year legislative session is identified by a General Court number (GC 184 = 2005–2006, GC 194 = 2025–2026, etc.). + +The data from this source has been archived on this site, last updated on **{{ site.data.ts_update_MA_lobbying.updated | date: "%-d %B %Y %I:%M %P" }}**. +Filings are refreshed automatically on a weekly basis; the script exits early when no new semi-annual filings have been posted. + +## Environmental relevance scoring + +To identify which bills are environmentally relevant, each bill's full text (fetched from the [MA Legislature OpenAPI](https://malegislature.gov/api/swagger)) is preprocessed by stripping repeated legislative scaffolding (e.g. "Chapter X of the General Laws, as appearing in the 2020 Official Edition, is hereby amended by inserting after…") that appears identically across thousands of bills regardless of topic. The bill title is then prepended to the cleaned body, and the combined text is truncated to 3,000 characters before embedding. Bills for which no full text is available fall back to the title alone. The cleaned text is embedded using Google's **Gemini Embedding model** (`gemini-embedding-2`, 768-dimensional vectors). + +Environmental relevance is scored using **differential cosine similarity**: for each bill, the maximum cosine similarity to a set of 42 known environmental bills is computed, and the maximum cosine similarity to a set of 42 known non-environmental bills is subtracted. Bills with a differential score above **0.05** are flagged as `is_environmental` (~1.3% of all uniquely lobbied bills). The non-environmental reference set spans eight policy domains — labor, criminal justice, healthcare, education, housing, municipal licensing, digital/media, and LGBTQ/social — to prevent cross-domain false positives. + +**Data coverage note:** Bills from the two oldest legislative sessions (GC 183–184, 2005–2008) have no full text in the Legislature API and are often missing titles in the lobbying portal as well. These ~1,500 bills embed as zero vectors and are excluded from topic clustering (assigned `cluster_id = -1`). They are retained in the lobbying activity data but do not appear in the t-SNE visualization. + +Embeddings are stored in a Parquet file on Google Cloud Storage (`gs://openamend-data/MA_bill_embeddings.parquet`) alongside bill full text. The lightweight scored CSV (scores and cluster IDs only, no embeddings) is committed to this repository. + +## Topic clustering + +All lobbied bills with valid embeddings (~24,400 bills) are clustered into **25 topic groups** using the **k-means clustering** algorithm on the L2-normalised Gemini embeddings (cosine-space clustering). Each cluster is labelled using **Gemini 2.5 Flash**, which receives the 20 most central bill titles in the cluster and returns a 3–5 word topic label. Clustering is a one-time operation re-run manually when the historical data changes significantly. + +| Cluster | Label | Bills | Env. bills | +|---------|-------|------:|----------:|{% for row in site.data.MA_bill_cluster_labels %} +| {{ row.cluster_id }} | {{ row.label }} | {{ row.n_bills }} | {{ row.n_env_bills }} |{% endfor %} + +### Bill embedding space (t-SNE) + +The plot below shows environmental bills projected into the policy landscape using [t-SNE](https://en.wikipedia.org/wiki/T-distributed_stochastic_neighbor_embedding). **Coloured, outlined dots** are the 329 environmentally-relevant bills, coloured by topic cluster; **grey dots** are a stratified background sample (~120 per cluster, ~3,000 total) providing geographic context. Hover over any point for the bill title. + +Note: MA legislative bill embeddings are semantically dense — even after boilerplate stripping, mean inter-cluster cosine distance is only ~0.006 vs. mean intra-cluster spread of ~0.53. Visualising all 25,000+ bills produces a featureless blob because the underlying high-dimensional structure does not project cleanly to two dimensions. The subsample approach makes the environmentally-relevant bills legible without misrepresenting the cluster separation. + +{% include charts/lobbying_bill_tsne.html %} + +## Download archive + +Full CSVs are stored in Google Cloud Storage (too large for the repository). +These links will be active once the initial full-history scrape is complete and uploaded: + +* Lobbying employers (entity–client–year) — `gs://openamend-data/MA_lobbying_employers.csv` +* Lobbying bills (entity–client–bill–year) — `gs://openamend-data/MA_lobbying_bills.csv` +* Lobbying bills scored (env relevance + cluster) — `gs://openamend-data/MA_lobbying_bills_scored.csv` +* Legislature bill metadata — `gs://openamend-data/MA_legislature_bills.csv` +* [Bill embeddings (768-dim Parquet)](https://storage.googleapis.com/openamend-data/MA_bill_embeddings.parquet) + +## Data tables + +### Lobbying Employers + +One row per (entity, client, year). Records how much each client paid each lobbying entity in a given year. + +| Entity Name | Client Name | Year | Reg Type | Compensation | +| --- | --- | --- | --- | --- |{% for row in site.data.MA_lobbying_employers_sample limit:10 %} +| [{{ row.entity_name }}](https://nsanders.me/ma_lobbying_explorer/lobbyists.html?name={{ row.entity_name | slugify }}) | [{{ row.client_name }}](https://nsanders.me/ma_lobbying_explorer/employers.html?name={{ row.client_name | slugify }}) | {{ row.year }} | {{ row.reg_type }} | {{ row.compensation }} |{% endfor %} +{: .sortable} + +### Lobbying Bills + +One row per (entity, client, bill, session). Records which bills each entity lobbied on behalf of each client, with the lobbying position. + +| Entity Name | Client Name | Year | Chamber | Bill | Bill Title | Position | +| --- | --- | --- | --- | --- | --- | --- |{% for row in site.data.MA_lobbying_bills_sample limit:10 %} +| [{{ row.entity_name }}](https://nsanders.me/ma_lobbying_explorer/lobbyists.html?name={{ row.entity_name | slugify }}) | [{{ row.client_name }}](https://nsanders.me/ma_lobbying_explorer/employers.html?name={{ row.client_name | slugify }}) | {{ row.year }} | {{ row.chamber }} | [{{ row.bill_id }}](https://nsanders.me/ma_lobbying_explorer/bills.html?id={{ row.bill_id }}&gc={{ row.general_court }}) | {{ row.bill_title | truncate: 60 }} | {{ row.position }} |{% endfor %} +{: .sortable} + +### Legislature Bills + +Bill metadata fetched from the [MA Legislature OpenAPI](https://malegislature.gov/api/swagger). Includes sponsor, final status, and derived `passed` boolean. Environmental relevance scores and cluster IDs are stored separately in `MA_lobbying_bills_scored.csv` (see above). + +| Bill | General Court | Title | Sponsor | Status | Passed | +| --- | --- | --- | --- | --- | --- |{% for row in site.data.MA_legislature_bills_sample limit:10 %} +| [{{ row.bill_id }}](https://nsanders.me/ma_lobbying_explorer/bills.html?id={{ row.bill_id }}&gc={{ row.general_court }}) | {{ row.general_court }} | {{ row.title | truncate: 60 }} | {{ row.sponsor_name }} | {{ row.status | truncate: 40 }} | {{ row.passed }} |{% endfor %} +{: .sortable} diff --git a/docs/data/MA_lobbying_bills_sample.csv b/docs/data/MA_lobbying_bills_sample.csv new file mode 100644 index 00000000..7b8dc96f --- /dev/null +++ b/docs/data/MA_lobbying_bills_sample.csv @@ -0,0 +1,107 @@ +,entity_name,client_name,year,general_court,chamber,bill_number,bill_title,position,amount,entity_name_norm,client_name_norm,bill_prefix,bill_id +0,Robert Alan Baker,Smaller Business Association of New England,2014,188,House Bill,4165,An Act Promoting Economic Growth Across the Commonwealth. Sought funding for manufacturing grant and layoff aversion program. met with key legislators from Economic Development committee and Ways and Means.,Support,170000.0,ROBERT ALAN BAKER,SMALLER BUSINESS ASSOCIATION OF NEW ENGLAND,H,H4165 +1,Law Office of Attorney James F McGrail,"Outfront Media, LLC",2018,190,Executive,,Matters in connection with Outfront Media Group LLC's participation in the request for proposals for advertising rights on the Massachusetts Bay Transportation Authority.,Support,90000.0,ATTORNEY JAMES F MCGRAIL,OUTFRONT MEDIA,, +2,Northwind Strategies,"New England Independent Transmission Company, LLC",2014,188,Executive,,Advised regarding potential energy legislation and central procurement. Represented client and met with the Executive Office of Environment & Energy.,Support,90000.0,NORTHWIND STRATEGIES,NEW ENGLAND INDEPENDENT TRANSMISSION COMPANY,, +3,Northwind Strategies,Boston Beer,2014,188,House Bill,267,"Represented client before members of the Joint Committee on Consumer Protection and Professional Licensure and met with Representatives Peisch, Mariano, Moran, and Haddad.",Support,67500.0,NORTHWIND STRATEGIES,BOSTON BEER,H,H267 +4,Northwind Strategies,GTECH Corporation,2014,188,Executive,,Represented client and advised relative to current and future activities with the Massachusetts Lottery and the State Treasury.,Support,66000.0,NORTHWIND STRATEGIES,GTECH,, +5,Advanced Strategies,"Partners HealthCare System, Inc.",2014,188,Executive,,Implementation of Chapter 224 of the Acts of 2012 and Implementation of state compliance with the Affordable Care Act,Neutral,65000.0,ADVANCED STRATEGIES,PARTNERS HEALTHCARE SYSTEM,, +6,Maryanne Lewis,"urban league of springfield, inc",2016,189,House Bill,4201,H4201- Conf. Committee Report and legislation and regulation surrounding educational and workforce development,Support,62000.0,MARYANNE LEWIS,URBAN LEAGUE OF SPRINGFIELD,H,H4201 +7,Kathleen A Hickman,"PowderHorn Veterans Housing, LLC",2020,191,Executive,,Monitoring legislative and executive branch activity and its impact on the client.,Neutral,60701.31,KATHLEEN A HICKMAN,POWDERHORN VETERANS HOUSING,, +8,Foley Hoag LLP,Amgen,2014,188,House Bill,3734,An Act Relative to the Substitution of Interchangeable Biosimilars,Support,60000.0,FOLEY HOAG,AMGEN,H,H3734 +9,John F Fitzgerald,"Veolia Energy North America Holdings, Inc.",2019,191,Executive,,Manufacturer's rep sales call,Neutral,60000.0,JOHN F FITZGERALD,VEOLIA ENERGY NORTH AMERICA HOLDINGS,, +10,NIxon Peabody LLP,DraftKings Inc.,2018,190,Senate Bill,2273,"An Act to regulate online gaming, daily fantasy sports, and online sports betting",Neutral,60000.0,NIXON PEABODY,DRAFTKINGS,S,S2273 +11,Thomas Michael Finneran,"Vertex Pharmaceuticals, Incorporated",2020,191,House Bill,1,"making appropriations for the fiscal year 2020 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the Commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",Neutral,60000.0,THOMAS MICHAEL FINNERAN,VERTEX PHARMACEUTICALS,H,H1 +12,"Kearney Donovan & McGee, P.C.",National Grid,2018,190,Executive,,For all activity,Neutral,60000.0,KEARNEY DONOVAN AND MCGEE P C,NATIONAL GRID,, +13,The Nolan Group,"Massachusetts Regional Taxi advocacy Group, llc",2015,189,Executive,,Monitor regulatory actions related to taxicab industry in Massachusetts. Bill has yet to be filed.,Support,60000.0,NOLAN GROUP,MASSACHUSETTS REGIONAL TAXI ADVOCACY GROUP,, +14,Bryan William Jamele,Massachusetts Competitive Partnership,2014,188,House Bill,4377,"Bill H.4377/ H.4165 +House (188th (2013 - 2014)) +An Act promoting economic growth across the Commonwealth +To provide for certain unanticipated obligations of the commonwealth, and for promoting economic growth. + +MACP supported changes to R&D tax credits, computer science education, tech and innovation sector internships, closing the community college remediation gap, supporting foreign-born entrepreneurs, and the Working Cities Challenge (Gateway Cities).",Support,55306.77,BRYAN WILLIAM JAMELE,MASSACHUSETTS COMPETITIVE PARTNERSHIP,H,H4377 +15,Kathleen A Hickman,"Anthem, Inc.",2020,191,Executive,,Monitoring legislation and its impact on the Group Insurance Commission. Coordinate with other health care providers.,Neutral,53937.18,KATHLEEN A HICKMAN,ANTHEM,, +16,John F Fitzgerald,"Veolia Energy North America Holdings, Inc.",2019,191,Executive,,,,52500.0,JOHN F FITZGERALD,VEOLIA ENERGY NORTH AMERICA HOLDINGS,, +17,Burke Strategies,"American International Group, Inc.",2017,190,Executive,,All lobby activity reported under sub agent,Neutral,51000.0,BURKE STRATEGIES,AMERICAN INTERNATIONAL GROUP,, +18,Thomas Michael Finneran,Vertex Pharmaceuitcals Incorporated,2019,191,House Bill,1,"making appropriations for the fiscal year 2020 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the Commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",Neutral,50000.0,THOMAS MICHAEL FINNERAN,VERTEX PHARMACEUITCALS,H,H1 +19,Matthew Keswick,Mass Gaming and Entertainment,2019,191,Executive,,,,50000.0,MATTHEW KESWICK,MASS GAMING AND ENTERTAINMENT,, +20,Beacon Hill Consulting Group,Massachusetts Behavioral Health Partnership,2015,189,Executive,,All bills and lobbying activities are listed in the sub agent filing.,Neutral,48000.0,BEACON HILL CONSULTING GROUP,MASSACHUSETTS BEHAVIORAL HEALTH PARTNERSHIP,, +21,"Kearney Donovan & McGee, P.C.",Harvard Pilgrim Health Care,2018,190,Executive,,For all activity,Neutral,48000.0,KEARNEY DONOVAN AND MCGEE P C,HARVARD PILGRIM HEALTH CARE,, +22,Beacon Hill Consulting Group,Beacon Health Strategies LLC,2016,189,Executive,,All lobbying activities are reported under sub agents.,Neutral,48000.0,BEACON HILL CONSULTING GROUP,BEACON HEALTH STRATEGIES,, +23,Foley Hoag LLP,"Cubist Pharmaceuticals, Inc.",2014,188,Executive,,Discuss Impact of Chapter 224 of the Acts of 2012 on pharmaceuticals; discussions regarding applicability of 247 CMR 7.00 to virtual manufacturers.,Neutral,48000.0,FOLEY HOAG,CUBIST PHARMACEUTICALS,, +24,Beacon Hill Consulting Group,Beacon Health Strategies LLC,2017,190,Executive,,All lobbying activities reported under sub agents,Neutral,48000.0,BEACON HILL CONSULTING GROUP,BEACON HEALTH STRATEGIES,, +25,"Kearney Donovan & McGee, P.C.",The Pew Charitable Trusts,2018,190,Executive,,For all activity,Neutral,45900.0,KEARNEY DONOVAN AND MCGEE P C,PEW CHARITABLE TRUSTS,, +26,Daniel Joseph Delaney,Patriot Care Corp,2019,191,Executive,,"Lobbying, consulting, and services related to the successful implementation of Chapter 369 of the Acts of 2012 (An Act for the Humanitarian Medical Use of Marijuana); 935 CMR 500 (Cannabis Control Commission)",Neutral,45340.0,DANIEL JOSEPH DELANEY,PATRIOT CARE,, +27,Patrick J. Moynihan,"Keolis Commuter Services, LLC",2019,191,Executive,,"Transportation related issues, including, but not limited to, those impacting rail.",Support,45000.0,PATRICK J MOYNIHAN,KEOLIS COMMUTER SERVICES,, +28,John F Fitzgerald,"Pure Storage, Inc.",2019,191,Executive,,,,45000.0,JOHN F FITZGERALD,PURE STORAGE,, +29,Gateway Public Solutions LLC,Equitable Financial Life Insurance Company,2025,194,Senate Bill,1878,An Act relative to the SMART plan,Oppose,45000.0,GATEWAY PUBLIC SOLUTIONS,EQUITABLE FINANCIAL LIFE INSURANCE COMPANY,S,S1878 +30,"Kearney Donovan & McGee, P.C.","Exelon Generation Company, LLC",2018,190,Executive,,For all activity,Neutral,45000.0,KEARNEY DONOVAN AND MCGEE P C,EXELON GENERATION COMPANY,, +31,Gateway Public Solutions LLC,Equitable Financial Life Insurance Company,2025,194,House Bill,39,An Act relative to the SMART Plan,Oppose,45000.0,GATEWAY PUBLIC SOLUTIONS,EQUITABLE FINANCIAL LIFE INSURANCE COMPANY,H,H39 +32,"Kearney, Donovan & McGee, P.C.",Massachusetts Manufacturing Extension Partnership,2016,189,Executive,,For all activities,Neutral,45000.0,KEARNEY DONOVAN AND MCGEE P C,MASSACHUSETTS MANUFACTURING EXTENSION PARTNERSHIP,, +33,Charles Yelen,"IIF Acquisitions, LLC",2018,190,Executive,,"Assist client to explore potential opportunities for public-private partnerships with the Massachusetts Port Authority and MBTA regarding infrastructure development. These activities centered on development opportunities regarding Massport's Conley Terminal in South Boston, and on the potential leasing of locomotives by the MBTA.",Support,45000.0,CHARLES YELEN,IIF ACQUISITIONS,, +34,Law Office of Attorney James F McGrail,"Outfront Media, LLC",2019,191,Executive,,Matters in connection with Outfront Media LLC's participation in the request for proposals for advertising rights on the Massachusetts Bay Transportation Authority,Support,45000.0,ATTORNEY JAMES F MCGRAIL,OUTFRONT MEDIA,, +35,Gateway Public Solutions LLC,Equitable Financial Life Insurance Company,2024,193,House Bill,2517,An Act relative to the SMART Plan,Oppose,45000.0,GATEWAY PUBLIC SOLUTIONS,EQUITABLE FINANCIAL LIFE INSURANCE COMPANY,H,H2517 +36,"Kearney Donovan & McGee, P.C.","Direct Energy Services, LLC",2018,190,Executive,,For all activity,Neutral,44000.0,KEARNEY DONOVAN AND MCGEE P C,DIRECT ENERGY SERVICES,, +37,Maryanne Lewis,"urban league of springfield,Inc.",2014,188,House Bill,4242,"H4242 FY 2015 Budget & 4001 Report FY 2015 budget.Legislation and regulation as it relates to labor,education,workforce development.",Support,43750.0,MARYANNE LEWIS,URBAN LEAGUE OF SPRINGFIELD,H,H4242 +38,Charles Yelen,IIF Acquisitions LLC,2017,190,Executive,,Assist client to explore potential opportunities for public-private partnerships regarding infrastructure development with Massachusetts Port Authority and MBTA.,Neutral,43500.0,CHARLES YELEN,IIF ACQUISITIONS,, +39,John Patrick Murphy Jr.,IBEW Local 1228,2017,190,Executive,,We emailed selected State Senators and State Representatives to write the Boston Red Sox and NESN regarding the treatment of IBEW Local 1228 broadcast technicians. We also emailed them to boycott interviews with CBS Boston until contract negotiations with WBZ are completed.,Oppose,42771.25,JOHN PATRICK MURPHY JR,IBEW LOCAL 1228,, +40,Thomas Michael Finneran,"Beer Distributors of Massachusetts, Inc.",2019,191,Senate Bill,178,An Act to promote economic development and market access for emerging businesses,Support,42000.0,THOMAS MICHAEL FINNERAN,BEER DISTRIBUTORS OF MASSACHUSETTS,S,S178 +41,Finneran Global Strategies,"Beer Distributors of Massachusetts, Inc.",2017,190,House Bill,2823,An Act to promote economic development and market access for emerging businesses,Support,42000.0,FINNERAN GLOBAL STRATEGIES,BEER DISTRIBUTORS OF MASSACHUSETTS,H,H2823 +42,"Kearney Donovan & McGee, P.C.",Massachusetts Credit Union Share Insurance Corporation,2018,190,Executive,,For all activity,Neutral,42000.0,KEARNEY DONOVAN AND MCGEE P C,MASSACHUSETTS CREDIT UNION SHARE INSURANCE,, +43,Foley Hoag LLP,"Gilead Sciences, Inc.",2015,189,Executive,,HIV and HCV Programming.,Neutral,42000.0,FOLEY HOAG,GILEAD SCIENCES,, +44,NIxon Peabody LLP,"New England Treatment Access, Inc.",2017,190,Executive,,No specific legislation – Attend the Cannibas Control Commission and Sub-Committee Commission hearings on development of regulations to govern the sale of recreational marijuana.,Neutral,40000.0,NIXON PEABODY,NEW ENGLAND TREATMENT ACCESS,, +45,"Podesta Group, Inc.","CrossFit, Inc.",2015,189,House Bill,185,"Legislation concerning the possible licensure and/or regulation of personal fitness trainers (Bill H.185, 'An Act to encourage well qualified practitioners in the field of personal training')",Oppose,40000.0,PODESTA GROUP,CROSSFIT,H,H185 +46,Maryanne Lewis,"ZERO Waste Solutions, LLC",2017,190,Executive,,Work with Mass Finance development on economic development of a waste management facility.,Support,39000.0,MARYANNE LEWIS,ZERO WASTE SOLUTIONS,, +47,Maryanne Lewis Attorney At Law,"ZERO Waste Solutions, LLC",2018,190,Executive,,Work with Mass Finance development on economic development of a waste management facility.,Support,39000.0,MARYANNE LEWIS,ZERO WASTE SOLUTIONS,, +48,Finneran Global Strategies,"Trinity Financial, Inc",2016,189,Executive,,"Monitoring of issues regarding permitting, financing, and development of housing and mixed-use real estate projects.",Neutral,39000.0,FINNERAN GLOBAL STRATEGIES,TRINITY FINANCIAL,, +49,Finneran Global Strategies,Trinity Financial,2017,190,House Bill,675,An Act financing the production and preservation of housing for low and moderate income residents,Support,39000.0,FINNERAN GLOBAL STRATEGIES,TRINITY FINANCIAL,H,H675 +50,"Finneran Global Strategies, LLC","Trinity Financial, Inc.",2014,188,House Bill,311,Monitoring of general issues pertaining to residential and commercial development; An Act regarding transformative development in Gateway Cities;,Support,39000.0,FINNERAN GLOBAL STRATEGIES,TRINITY FINANCIAL,H,H311 +51,Thomas Michael Finneran,Alliance of Automobile Manufacturers,2019,191,House Bill,293,"An Act to enhance, update and protect the 2013 Motor Vehicle Right to Repair Law and Consumer Rights",Oppose,39000.0,THOMAS MICHAEL FINNERAN,ALLIANCE OF AUTOMOBILE MANUFACTURERS,H,H293 +52,"BCB Government Relations, Inc.",Massachusetts Beverage Association,2019,191,Executive,,,,38750.0,BCB GOVERNMENT RELATIONS,MASSACHUSETTS BEVERAGE ASSOCIATION,, +53,Daniel W Allegretti,"Exelon Generation Company, LLC",2019,191,House Bill,3668,An Act to Protect Consumers from Predatory Electric Supplier Practices,Oppose,38400.0,DANIEL W ALLEGRETTI,EXELON GENERATION COMPANY,H,H3668 +54,Daniel W Allegretti,"Exelon Generation Company, LLC",2020,191,Executive,,,,38400.0,DANIEL W ALLEGRETTI,EXELON GENERATION COMPANY,, +55,Daniel W Allegretti,"Exelon Generation Company, LLC",2019,191,House Bill,2823,An Act to protect consumers from predatory electric supplier practices,Neutral,38400.0,DANIEL W ALLEGRETTI,EXELON GENERATION COMPANY,H,H2823 +56,Nicholas J Puleo,Massachusetts Teachers Association,2016,189,House Bill,4450,(All Budget bills) An Act Making Appropriations for the Fiscal Year 2017,Neutral,38117.93,NICHOLAS J PULEO,MASSACHUSETTS TEACHERS ASSOCIATION,H,H4450 +57,Gateway Public Solutions,Equitable Financial Life Insurance Company,2021,192,House Bill,2643,An Act relative to the SMART Plan,Oppose,38000.0,GATEWAY PUBLIC SOLUTIONS,EQUITABLE FINANCIAL LIFE INSURANCE COMPANY,H,H2643 +58,Joseph M Donovan,"Neutron Holdings Inc, dba Lime",2019,191,Executive,,,,38000.0,JOSEPH M DONOVAN,NEUTRON HOLDINGS,, +59,Tara Bartley,"Commonwealth Alternative Care, Inc.",2019,191,House Bill,3543,An Act expanding the use of organic pest control,Support,37500.0,TARA BARTLEY,COMMONWEALTH ALTERNATIVE CARE,H,H3543 +60,NIxon Peabody LLP,"Sira Naturals, Inc.",2017,190,Executive,,No legislation - Provided strategic advice regarding general executive matters and the applicability of M.G.L. Ch. 93G to local municipal marijuana by-law town meeting action and ballot question.,Neutral,37500.0,NIXON PEABODY,SIRA NATURALS,, +61,Maryanne Lewis,"Urban League of Springfield, Inc.",2015,189,House Bill,3401,H3401- Conf. Committee Report and legislation and regulation surrounding educational and workforce development,Support,37500.0,MARYANNE LEWIS,URBAN LEAGUE OF SPRINGFIELD,H,H3401 +62,"Kearney Donovan & McGee, P.C.",Service Contract Industry Council,2018,190,Executive,,For all activity,Neutral,37500.0,KEARNEY DONOVAN AND MCGEE P C,SERVICE CONTRACT INDUSTRY COUNCIL,, +63,John F Fitzgerald,"Pure Storage, Inc.",2019,191,Executive,,Manufacturer's rep sales call,Neutral,37500.0,JOHN F FITZGERALD,PURE STORAGE,, +64,Tara Bartley,L3Harris Technologies,2019,191,Executive,,Meeting with Curt Wood to discuss matters related to public safety communications.,Support,37000.0,TARA BARTLEY,L3HARRIS TECHNOLOGIES,, +65,Foley Hoag LLP,Guardian Community Trust,2017,190,Executive,,Potential draft regulations from the Executive Office of Health and Human Services regarding pooled trusts for Medicaid eligible persons over the age of 65.,Oppose,36490.5,FOLEY HOAG,GUARDIAN COMMUNITY TRUST,, +66,"Kearney Donovan & McGee, P.C.","Comcast Cable Communications Management, LLC",2018,190,Executive,,For all activity,Neutral,36000.0,KEARNEY DONOVAN AND MCGEE P C,COMCAST CABLE COMMUNICATIONS MANAGEMENT,, +67,"Kearney Donovan & McGee, P.C.","Amazon.com, Inc.",2018,190,Executive,,For all activity,Neutral,36000.0,KEARNEY DONOVAN AND MCGEE P C,AMAZON COM,, +68,Gateway Public Solutions,"Greater Boston Urology, LLC",2021,192,House Bill,437,An Act relative to a specialty pharmacy pilot program for Urology,Support,36000.0,GATEWAY PUBLIC SOLUTIONS,GREATER BOSTON UROLOGY,H,H437 +69,Gateway Public Solutions,Enhanced Capital,2021,192,House Bill,2830,An Act establishing the Massachusetts rural jobs act,Support,36000.0,GATEWAY PUBLIC SOLUTIONS,ENHANCED CAPITAL,H,H2830 +70,Thomas Michael Finneran,Boston Boat Basin LLC,2019,191,House Bill,833,An Act confirming Commercial Wharf East Condominium Association present uses as authorized by the Downtown Waterfront-Faneuil Hall Urban Renewal Plan and Chapter 663 of the Acts of 1964 and Chapter 310 of the Acts of 1972 and preventing residents from being forced to sell their property and leave,Neutral,36000.0,THOMAS MICHAEL FINNERAN,BOSTON BOAT BASIN,H,H833 +71,Ron Lanton,NORTHEAST PHARMACY SERVICE CORPORATION,2024,193,House Bill,4066,An Act relative to pharmacists as healthcare providers,Support,36000.0,RON LANTON,NORTHEAST PHARMACY SERVICE,H,H4066 +72,James P Hurrell Lobbying Consulting,Massachusetts State Automobile Dealers Association,2014,188,Senate Bill,129,auto franchise law,Support,36000.0,JAMES P HURRELL LOBBYING CONSULTING,MASSACHUSETTS STATE AUTOMOBILE DEALERS ASSOCIATION,S,S129 +73,Golledge Strategies & Solutions LLC,Covanta Energy LLC,2019,191,Executive,,Discussions regarding proposed regulation changes for Waste to Energy Credits,Support,36000.0,GOLLEDGE STRATEGIES AND SOLUTIONS,COVANTA ENERGY,, +74,William E. Ryan Associates,LStar Management,2016,189,Executive,,"Public infrastructure needs and private investment activity associated with the redevelopment of the former South Weymouth Naval Air Station, House members representing Weymouth, Rockland, Abington",Support,35000.0,WILLIAM E RYAN,LSTAR MANAGEMENT,, +75,Nicholas J Puleo,Massachusetts Teachers Association,2016,189,Senate Bill,326,An Act Establishing a moratorium for Commonwealth charter schools,Support,34792.2,NICHOLAS J PULEO,MASSACHUSETTS TEACHERS ASSOCIATION,S,S326 +76,Abbie R Goodman,The Engineering Center Education Trust,2014,188,House Bill,3847,"Work to oppose Repeal of the 2013 Gas Tax indexing; work to defeat Ballot Question 1, including opposition to H. 3847: An Act to Repeal of 2013 gas tax indexing +Initiative petition of Steven W. Aylward and others for the passage of An Act repeal of 2013 gas tax indexing (House, No. 3847).",Oppose,34732.5,ABBIE R GOODMAN,ENGINEERING CENTER EDUCATION TRUST,H,H3847 +77,David Goggin,Amgen,2014,188,House Bill,3734,An Act relative to the substitution of interchangeable biosimilars,Support,34705.92,DAVID GOGGIN,AMGEN,H,H3734 +78,Maryanne Lewis,"Green Heart Holistic, Health & Pharmaceuticals, Inc.",2014,188,Senate Bill,1031,"S1031 An ACT to establish the Massachusetts medical marijuana program, legislation and regulation as it relates to medical cannibus.",Neutral,34000.0,MARYANNE LEWIS,GREEN HEART HOLISTIC HEALTH AND PHARMACEUTICALS,S,S1031 +79,Thomas Michael Finneran,"Pharmaceutical Research and Manufacturers of America, Inc.",2019,191,House Bill,1,"making appropriations for the fiscal year 2020 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the Commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",Neutral,32500.0,THOMAS MICHAEL FINNERAN,PHARMACEUTICAL RESEARCH AND MANUFACTURERS OF AMERICA,H,H1 +80,Kathleen A Hickman,Raytheon Technologies Corporation,2020,191,Executive,,Monitoring legislative and executive branch activity and its impact on the client.,Oppose,32487.02,KATHLEEN A HICKMAN,RAYTHEON TECHNOLOGIES,, +81,Martin Dagoberto Driggs,"Citizens for GMO Labeling, Inc.",2015,189,House Bill,3242,"""Genetic Engineering Transparency Food and Seed Labeling Act,"" AKA ""The GMO Labeling Bill""",Support,32200.0,MARTIN DAGOBERTO DRIGGS,CITIZENS FOR GMO LABELING,H,H3242 +82,CK Strategies,IGT and Its Affiliates,2015,189,Executive,,"Represented GTech and advised relative to all aspects of the Massachusetts Lottery and the State Treasury. This includes advocating on GTech's behalf to appropriate state agency representatives, strategic planning for future business opportunities and technology expansion within the Massachusetts Lottery.",Support,32000.0,CK STRATEGIES,IGT AND ITS AFFILIATES,, +83,"Kearney, Donovan & McGee, P.C.","The New England Center for Children, Inc.",2016,189,Executive,,For all activities,Neutral,31500.0,KEARNEY DONOVAN AND MCGEE P C,NEW ENGLAND CENTER FOR CHILDREN,, +84,"Kearney Donovan & McGee, P.C.","The New England Center for Children, Inc.",2018,190,Executive,,For all activity,Neutral,31500.0,KEARNEY DONOVAN AND MCGEE P C,NEW ENGLAND CENTER FOR CHILDREN,, +85,Suzanne Wall,Massachusetts Teachers Association,2018,190,House Bill,4153,An Act investing in public higher education.,Support,31160.0,SUZANNE WALL,MASSACHUSETTS TEACHERS ASSOCIATION,H,H4153 +86,"Kearney, Donovan & McGee, P.C.",New England Convenience Store & Energy Marketers Association,2016,189,Executive,,For all activities,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,NEW ENGLAND CONVENIENCE STORE AND ENERGY MARKETERS ASSOCIATION,, +87,Maryanne Lewis,gabriel care,2014,188,House Bill,4524,H4524; AN ACT relative to criminal penalties for acts involving federal and state health care programs and legislation and regulation surrounding adult foster care.,Support,30000.0,MARYANNE LEWIS,GABRIEL CARE,H,H4524 +88,"Kearney, Donovan & McGee, P.C.","Ejt Management, Inc",2016,189,Executive,,For all activity,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,EJT MANAGEMENT,, +89,Matthew Keswick,"WatchGuard, Inc.",2019,191,Executive,,,,30000.0,MATTHEW KESWICK,WATCHGUARD,, +90,Lisa Marie Andoscia,"Allied Waste Services of Massachusetts, LLC",2019,191,Executive,,procurement and general waste management and recycling,Support,30000.0,LISA MARIE ANDOSCIA,ALLIED WASTE SERVICES OF MASSACHUSETTS,, +91,Matthew Keswick,Association of Dental Support Organizations,2019,191,Executive,,,,30000.0,MATTHEW KESWICK,ASSOCIATION OF DENTAL SUPPORT ORGANIZATIONS,, +92,"Kearney, Donovan & McGee, P.C.",Darden Inc.,2016,189,Executive,,For all activityFor all activity,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,DARDEN,, +93,"Kearney, Donovan & McGee, P.C.",Covanta,2016,189,Executive,,For all activity,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,COVANTA,, +94,Gateway Public Solutions,"Greater Boston Urology, LLC",2019,191,Executive,,,,30000.0,GATEWAY PUBLIC SOLUTIONS,GREATER BOSTON UROLOGY,, +95,Maryanne Lewis,"Roche Bros. Supermarkets, LLC",2017,190,House Docket,3667,An Act authorizing the town of Needham to grant an additional license for the sale of malt and wine beverages not to be drunk on the premises,Support,30000.0,MARYANNE LEWIS,ROCHE BROS SUPERMARKETS,HD,HD3667 +96,Maryanne Lewis,"Roche Bros. Supermarkets, LLC",2016,189,House Bill,4201,H4201- Conf. Committee Report and legislation and regulation surrounding educational and workforce development,Neutral,30000.0,MARYANNE LEWIS,ROCHE BROS SUPERMARKETS,H,H4201 +97,Matthew Keswick,Lenovo United States Inc,2019,191,Executive,,,,30000.0,MATTHEW KESWICK,LENOVO UNITED STATES,, +98,"Kearney Donovan & McGee, P.C.","Sterling Suffolk Racecourse, LLC",2018,190,Executive,,For all activity,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,STERLING SUFFOLK RACECOURSE,, +99,The Nolan Group,GEM Realty Capital,2014,188,Executive,,"Provide advice and research in relation to potential investments. Meet with officials at the Department of Environmental Protection, Waterways Division to discuss Chapter 91 and other pertinent issues related to the purchase of a property in Boston. There have been no discussions with legislators at the this time.",Support,30000.0,NOLAN GROUP,GEM REALTY CAPITAL,, diff --git a/docs/data/MA_lobbying_bills_scored_sample.csv b/docs/data/MA_lobbying_bills_scored_sample.csv new file mode 100644 index 00000000..a80d2985 --- /dev/null +++ b/docs/data/MA_lobbying_bills_scored_sample.csv @@ -0,0 +1,101 @@ +,bill_number,general_court,bill_title,bill_id,env_relevance_score,is_environmental,cluster_id +0,3678,194,An Act relative to chemical recycling,HD3678,0.1475381851196289,1,-1 +1,4563,193,An Act relative to landfills and areas of critical environmental concern,H4563,0.1332122683525085,1,0 +2,2945,190,An Act relative to landfills and areas of critical environmental concern,H2945,0.1287276148796081,1,21 +3,894,191,An Act relative to landfills and areas of critical environmental concern,H894,0.1287276148796081,1,10 +4,930,192,An Act relative to landfills and areas of critical environmental concern,H930,0.1287275552749633,1,-1 +5,440,190,An Act relative to landfills and Areas of Critical Environmental Concern,S440,0.1273688673973083,1,-1 +6,3701,193,An Act relative to chemical recycling,H3701,0.1225529313087463,1,21 +7,863,193,An Act relative to proper disposal of products containing PFAS,H863,0.1221066713333129,1,-1 +8,530,192,An Act relative to maintaining adequate water supplies through effective drought management,S530,0.1155469417572021,1,20 +9,861,193,An Act relative to maintaining adequate water supplies through effective drought management,H861,0.1155468821525573,1,4 +10,39,193,An Act protecting our soil and farms from PFAS contamination,S39,0.1148219108581543,1,-1 +11,101,193,An Act protecting our soil and farms from PFAS contamination,H101,0.1148216724395752,1,0 +12,762,191,An Act relative to maintaining adequate water supplies through effective drought management,H762,0.1139989495277404,1,-1 +13,662,194,An Act relative to maintaining adequate water supplies through effective drought management,S662,0.1139988303184509,1,5 +14,56,194,An Act protecting our soil and farms from PFAS contamination,S56,0.1135307550430297,1,3 +15,109,194,An Act protecting our soil and farms from PFAS contamination,H109,0.1135307550430297,1,9 +16,4288,193,An Act protecting our soil and farms from PFAS contamination,H4288,0.1130175590515136,1,8 +17,1003,194,An Act relative to maintaining adequate water supplies through effective drought management,H1003,0.1113339066505432,1,4 +18,586,194,An Act relative to maintaining adequate water supplies through effective drought management,S586,0.1113339066505432,1,-1 +19,2115,190,An Act relative to drought management,H2115,0.1107659339904785,1,22 +20,817,193,An Act providing access to higher education for high school graduates in the Commonwealth,H817,0.1103136539459228,1,3 +21,1060,194,An Act relative to solid waste disposal facilities in environmental justice communities,H1060,0.1098233461380004,1,9 +22,529,193,An Act relative to solid waste disposal facilities in environmental justice communities,S529,0.1098232865333557,1,2 +23,914,193,An Act relative to solid waste disposal facilities in environmental justice communities,H914,0.1098232269287109,1,21 +24,383,188,"SB383, An Act incorporating wetland stewardship and scenic resources into wetland protection. We tracked the status of this bill using Insta-Trac, a tracking service, but did not have any contact with legislators or government officials in regard to this bill.",S383,0.1079468727111816,1,0 +25,735,186,An Act to reinstate the landfill moratorium. ,H735,0.10762619972229,1,0 +26,425,190,An Act relative to drought management,S425,0.1064680218696594,1,-1 +27,446,190,An Act to promote healthy communities and the environment,H446,0.1008339524269104,1,0 +28,698,188,An Act relative to best management practices in water,H698,0.0944083333015441,1,-1 +29,829,191,An Act to promote healthy communities and the environment,H829,0.0931211709976196,1,20 +30,1315,191,An Act relative to chemicals in food packaging,S1315,0.0930818915367126,1,-1 +31,2146,190,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,H2146,0.0929172039031982,1,15 +32,754,189,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,H754,0.0929172039031982,1,-1 +33,604,192,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S604,0.0929172039031982,1,-1 +34,521,191,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S521,0.0929170846939086,1,4 +35,560,193,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S560,0.0929170846939086,1,14 +36,477,190,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S477,0.0929170846939086,1,-1 +37,2009,191,An Act to reduce greenhouse gas emissions,S2009,0.092070460319519,1,-1 +38,730,188,An Act providing for more efficient wetlands protection by avoiding unnecessary duplication in local wetlands ordinances or bylaws,H730,0.0907992124557495,1,9 +39,3836,192,An Act prohibiting disposal by incineration of certain aqueous film-forming foam,H3836,0.0905959010124206,1,20 +40,2085,188,"Joint Committee on Telecommunications, Utilities & Energy - An Act requiring the timely adoption of greenhouse gas emission limits for the year 2030",S2085,0.0900017023086547,1,-1 +41,410,189,"S. 410, resolve relative to establishing a comprehensive waste management hierarchy in Massachusetts",S410,0.0889670252799987,1,-1 +42,4820,192,An Act to ban the use of PFAS in food packaging,H4820,0.0876446366310119,1,14 +43,2893,192,An Act relative to chemicals in food packaging,S2893,0.0875599980354309,1,6 +44,2126,190,An Act relative to the Massachusetts Wetlands Protection Act,H2126,0.0875561237335205,1,24 +45,773,188,An Act allowing local wetlands bylaw decisions to be appealed to land court,S773,0.0875385999679565,1,13 +46,2723,193,Studying the effect of per- and polyfluoroalkyl substances in commercial products,S2723,0.0867761373519897,1,6 +47,1045,194,An Act relative to liability for release of hazardous materials,H1045,0.0862191319465637,1,-1 +48,441,190,An Act further regulating siting of solid waste facilities,S441,0.0862088203430175,1,-1 +49,1194,194,An Act relative to the cleanup of accidental home heating oil spills,H1194,0.0861396789550781,1,21 +50,4818,192,An Act restricting toxic PFAS chemicals in consumer products to protect our health,H4818,0.0860450863838195,1,7 +51,906,193,An Act to accelerate and streamline wetlands restoration,H906,0.0858179926872253,1,-1 +52,588,193,An Act studying the effect of per- and polyfluoroalkyl substances in commercial products,S588,0.085762619972229,1,3 +53,985,192,An Act studying the effect of per- and polyfluoroalkyl substances in commercial products,H985,0.0852963924407959,1,4 +54,624,192,An Act studying the effect of per- and polyfluoroalkyl substances in commercial products,S624,0.0852963328361511,1,0 +55,1046,193,An Act relative to the cleanup of accidental home heating oil spills,H1046,0.0852188467979431,1,15 +56,2149,190,An Act relating to the effective and efficient implementation of the Global Warming Solutions Act of 2008,H2149,0.0850124955177307,1,18 +57,457,193,An Act to accelerate and streamline wetlands restoration,S457,0.0845230817794799,1,8 +58,39,193,An Act protecting our soil and farms from PFAS contamination,H39,0.0840250253677368,1,6 +59,1431,193,An Act relative to chemicals in food packaging,S1431,0.0839515328407287,1,-1 +60,1052,194,An Act accelerating wetlands restoration,H1052,0.0838565826416015,1,1 +61,2500,191,An Act setting next-generation climate policy,S2500,0.0838357806205749,1,7 +62,456,189,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S456,0.0836589336395263,1,-1 +63,1832,191,An Act further regulating siting of solid waste facilities,H1832,0.0835810303688049,1,16 +64,2161,192,An Act further regulating siting of solid waste facilities,H2161,0.0835810303688049,1,-1 +65,3219,190,An Act further regulating siting of solid waste facilities,H3219,0.0835807919502258,1,1 +66,2056,193,An Act further regulating siting of solid waste facilities,H2056,0.0835807919502258,1,-1 +67,1929,191,An Act requiring the timely adoption of greenhouse gas emission limits for the year 2030,S1929,0.0833440423011779,1,-1 +68,1828,190,An Act to explore alternative funding sources to ensure safe and reliable transportation,S1828,0.0832948684692382,1,20 +69,479,190,An Act relative to 2030 and 2040 emissions benchmarks,S479,0.0831530690193176,1,-1 +70,607,192,An Act relative to stronger emissions limits,S607,0.0829653739929199,1,-1 +71,440,190,An Act relative to landfills and Areas of Critical Environmental Concern,H440,0.0828680992126464,1,3 +72,2224,192,An Act to reduce greenhouse gas emissions,S2224,0.0828336477279663,1,-1 +73,2477,191,An Act setting next-generation climate policy,S2477,0.0824567079544067,1,1 +74,394,186,- Hazardous Waste Notification,S394,0.0822882652282714,1,7 +75,719,188,Resolve relative to establishing a comprehensive waste managment hierarchy in Massachusetts,H719,0.0822012424468994,1,9 +76,2348,192,An Act to ban the use of PFAS in food packaging,H2348,0.0821852087974548,1,1 +77,994,194,An Act regulating the application of fertilizer used in the town of Orleans,H994,0.0821208953857421,1,-1 +78,874,193,An Act regulating the application of fertilizer used in the town of Orleans,H874,0.0821207761764526,1,2 +79,429,190,An Act relative to underground storage tank remediation,H429,0.0820258259773254,1,-1 +80,9,192,An Act creating a next-generation roadmap for Massachusetts climate policy,S9,0.0820236802101135,1,5 +81,750,186,An Act providing for more efficient wetlands protection by avoiding unnecessary duplication in local wetlands ordinances or bylaws,H750,0.0819623470306396,1,13 +82,1765,191,An Act to prevent nonprofit institutions from avoiding wetlands or natural resource protections under the so-called Dover Amendment,H1765,0.0819566249847412,1,24 +83,2035,193,An Act to prevent nonprofit institutions from avoiding wetlands or natural resource protections under the so-called Dover Amendment,H2035,0.0819566249847412,1,23 +84,1325,192,An Act to prevent nonprofit institutions from avoiding wetlands or natural resource protections under the so-called Dover Amendment,S1325,0.0819566249847412,1,-1 +85,2141,192,An Act to prevent nonprofit institutions from avoiding wetlands or natural resource protections under the so-called Dover Amendment,H2141,0.0819566249847412,1,-1 +86,3661,191,An Act relative to the reduction of certain toxic chemicals in firefighter personal protective equipment,H3661,0.0817464590072631,1,22 +87,2737,193,An Act relative to the remediation of home heating oil releases,S2737,0.0815783739089965,1,-1 +88,813,194,An Act relative to the remediation of home heating oil releases,S813,0.081578254699707,1,1 +89,4256,191,An Act establishing an interagency PFAS task force,H4256,0.0814509987831115,1,19 +90,930,192,An Act relative to landfills and areas of critical environmental concern,S930,0.0813663601875305,1,9 +91,1747,189,An Act combating climate change,S1747,0.0810697078704834,1,-1 +92,136,194,An Act prohibiting the use and sale of toxic sludge,H136,0.0807428359985351,1,-1 +93,1866,189,An Act relative to a clean fuel standard,S1866,0.0806789398193359,1,-1 +94,1974,190,An Act relative to a clean fuel standard,S1974,0.0806789398193359,1,-1 +95,2130,191,An Act relative to a clean fuel standard,S2130,0.0806789398193359,1,-1 +96,2370,192,An Act relative to a clean fuel standard,S2370,0.0806789398193359,1,-1 +97,2286,193,An Act relative to a clean fuel standard,S2286,0.0806789398193359,1,-1 +98,4187,188,An Act relative to clean energy resources,H4187,0.0806100368499755,1,6 +99,1213,193,An Act relative to clean energy resources,HD1213,0.0806098580360412,1,-1 diff --git a/docs/data/MA_lobbying_employers_sample.csv b/docs/data/MA_lobbying_employers_sample.csv new file mode 100644 index 00000000..8e8b494e --- /dev/null +++ b/docs/data/MA_lobbying_employers_sample.csv @@ -0,0 +1,101 @@ +,entity_name,client_name,year,reg_type,compensation,entity_name_norm,client_name_norm +0,"21c, LLC","EDUCATION TRUST, INC. (THE)",2024,Lobbyist Entity,7500.0,21C,EDUCATION TRUST +1,"21c, LLC","Amplify Education, Inc.",2024,Lobbyist Entity,22500.0,21C,AMPLIFY EDUCATION +2,"21c, LLC","The Massachusetts Alliance for Early College, Inc.",2024,Lobbyist Entity,15000.0,21C,MASSACHUSETTS ALLIANCE FOR EARLY COLLEGE +3,"21c, LLC",Benjamin Franklin Cummings Institute of Technology,2024,Lobbyist Entity,12500.0,21C,BENJAMIN FRANKLIN CUMMINGS INSTITUTE OF TECHNOLOGY +4,"21c, LLC",Total salaries received,2024,Lobbyist Entity,57500.0,21C,TOTAL SALARIES RECEIVED +5,"21c, LLC","Artists For Humanity, Inc.",2024,Lobbyist Entity,12500.0,21C,ARTISTS FOR HUMANITY +6,"27 South Strategies, LLC","The Massachusetts International Festival of the Arts, Inc.",2024,Lobbyist Entity,24000.0,27 SOUTH STRATEGIES,MASSACHUSETTS INTERNATIONAL FESTIVAL OF ARTS +7,"27 South Strategies, LLC","Veterinary Emergency Group, LLC",2024,Lobbyist Entity,27000.0,27 SOUTH STRATEGIES,VETERINARY EMERGENCY GROUP +8,"27 South Strategies, LLC",Thrive Scholars,2024,Lobbyist Entity,21600.0,27 SOUTH STRATEGIES,THRIVE SCHOLARS +9,"27 South Strategies, LLC",Boston Center for Independent Living INC,2024,Lobbyist Entity,2500.0,27 SOUTH STRATEGIES,BOSTON CENTER FOR INDEPENDENT LIVING +10,"27 South Strategies, LLC","Guardian Community Trust, Inc.",2024,Lobbyist Entity,36000.0,27 SOUTH STRATEGIES,GUARDIAN COMMUNITY TRUST +11,"27 South Strategies, LLC","Gobrands, Inc",2024,Lobbyist Entity,30000.0,27 SOUTH STRATEGIES,GOBRANDS +12,"27 South Strategies, LLC",Total salaries received,2024,Lobbyist Entity,141100.0,27 SOUTH STRATEGIES,TOTAL SALARIES RECEIVED +13,Anthony Arthur Abdelahad,"Massachusetts Association of Vocational Administrators, Inc.",2024,Lobbyist,34999.98,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS ASSOCIATION OF VOCATIONAL ADMINISTRATORS +14,Anthony Arthur Abdelahad,"Massachusetts Association of Insurance Agents, Inc.",2024,Lobbyist,67500.0,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS ASSOCIATION OF INSURANCE AGENTS +15,Anthony Arthur Abdelahad,"USA Hauling & Recycling, Inc.",2024,Lobbyist,0.0,ANTHONY ARTHUR ABDELAHAD,USA HAULING AND RECYCLING +16,Anthony Arthur Abdelahad,"Lindy Farms of Connecticut, LLC",2024,Lobbyist,0.0,ANTHONY ARTHUR ABDELAHAD,LINDY FARMS OF CONNECTICUT +17,Anthony Arthur Abdelahad,"Greathorse, LLC",2024,Lobbyist,0.0,ANTHONY ARTHUR ABDELAHAD,GREATHORSE +18,Anthony Arthur Abdelahad,Massachusetts Municipal Wholesale Electric Company,2024,Lobbyist,70000.0,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS MUNICIPAL WHOLESALE ELECTRIC COMPANY +19,Anthony Arthur Abdelahad,Construction Industries of Massachusetts Massachusetts Aggregate and Asphalt Pavement Division,2024,Lobbyist,24000.0,ANTHONY ARTHUR ABDELAHAD,CONSTRUCTION INDUSTRIES OF MASSACHUSETTS MASSACHUSETTS AGGREGATE AND ASPHALT PAVEMENT DIVISION +20,Anthony Arthur Abdelahad,"AMERICAN MEDICAL RESPONSE OF MASSACHUSETTS, INC.",2024,Lobbyist,59641.86,ANTHONY ARTHUR ABDELAHAD,AMERICAN MEDICAL RESPONSE OF MASSACHUSETTS +21,Anthony Arthur Abdelahad,"MANAFORT BROTHERS, INCORPORATED",2024,Lobbyist,14000.0,ANTHONY ARTHUR ABDELAHAD,MANAFORT BROTHERS +22,Anthony Arthur Abdelahad,"Peckham Industries, Inc.",2024,Lobbyist,51000.0,ANTHONY ARTHUR ABDELAHAD,PECKHAM INDUSTRIES +23,Anthony Arthur Abdelahad,"MGM Resorts International Operations, Inc.",2024,Lobbyist,13125.0,ANTHONY ARTHUR ABDELAHAD,MGM RESORTS INTERNATIONAL OPERATIONS +24,Anthony Arthur Abdelahad,Massachusetts Alliance of Boys & Girls Clubs,2024,Lobbyist,60000.0,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS ALLIANCE OF BOYS AND GIRLS CLUBS +25,Anthony Arthur Abdelahad,"Massachusetts Urgent Care Association, Inc",2024,Lobbyist,45833.35,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS URGENT CARE ASSOCIATION +26,Anthony Arthur Abdelahad,Western New England University,2024,Lobbyist,22500.0,ANTHONY ARTHUR ABDELAHAD,WESTERN NEW ENGLAND UNIVERSITY +27,Anthony Arthur Abdelahad,"The Massachusetts Propane Association,Inc",2024,Lobbyist,60000.0,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS PROPANE ASSOCIATION +28,Anthony Arthur Abdelahad,"Community Music School of Springfield, Inc.",2024,Lobbyist,24999.96,ANTHONY ARTHUR ABDELAHAD,COMMUNITY MUSIC SCHOOL OF SPRINGFIELD +29,Anthony Arthur Abdelahad,Total salaries received,2024,Lobbyist,547600.15,ANTHONY ARTHUR ABDELAHAD,TOTAL SALARIES RECEIVED +30,Paul G. Afonso,"Eastern Salt Company, Inc.",2024,Lobbyist,35000.0,PAUL G AFONSO,EASTERN SALT COMPANY +31,Paul G. Afonso,"The Next Street MA, LLC",2024,Lobbyist,15000.0,PAUL G AFONSO,NEXT STREET MA +32,Paul G. Afonso,GardaWorld Federal Services LLC,2024,Lobbyist,30000.0,PAUL G AFONSO,GARDAWORLD FEDERAL SERVICES +33,Paul G. Afonso,PPL Services Corporation,2024,Lobbyist,30000.0,PAUL G AFONSO,PPL SERVICES +34,Paul G. Afonso,"American Physical Therapy Association of Massachusetts, Inc.",2024,Lobbyist,20000.0,PAUL G AFONSO,AMERICAN PHYSICAL THERAPY ASSOCIATION OF MASSACHUSETTS +35,Paul G. Afonso,Massachusetts Association of Nurse Anesthesiology,2024,Lobbyist,39000.0,PAUL G AFONSO,MASSACHUSETTS ASSOCIATION OF NURSE ANESTHESIOLOGY +36,Paul G. Afonso,"Massachusetts Association of Health Plans, Inc",2024,Lobbyist,57000.0,PAUL G AFONSO,MASSACHUSETTS ASSOCIATION OF HEALTH PLANS +37,Paul G. Afonso,Arbella Mutual Insurance Company,2024,Lobbyist,36000.0,PAUL G AFONSO,ARBELLA MUTUAL INSURANCE COMPANY +38,Paul G. Afonso,"ChargePoint, Inc.",2024,Lobbyist,21000.0,PAUL G AFONSO,CHARGEPOINT +39,Paul G. Afonso,"Form Energy, Inc.",2024,Lobbyist,39000.0,PAUL G AFONSO,FORM ENERGY +40,Paul G. Afonso,Applied Materials Inc.,2024,Lobbyist,45000.0,PAUL G AFONSO,APPLIED MATERIALS +41,Paul G. Afonso,Massachusetts Coalition for Suicide Prevention,2024,Lobbyist,7500.0,PAUL G AFONSO,MASSACHUSETTS COALITION FOR SUICIDE PREVENTION +42,Paul G. Afonso,Hazel Health Inc.,2024,Lobbyist,21000.0,PAUL G AFONSO,HAZEL HEALTH +43,Paul G. Afonso,"MGM Resorts International Operations, Inc.",2024,Lobbyist,30000.0,PAUL G AFONSO,MGM RESORTS INTERNATIONAL OPERATIONS +44,Paul G. Afonso,Tripadvisor Inc.,2024,Lobbyist,45000.0,PAUL G AFONSO,TRIPADVISOR +45,Paul G. Afonso,"Uber Technologies, Inc.",2024,Lobbyist,45000.0,PAUL G AFONSO,UBER TECHNOLOGIES +46,Paul G. Afonso,"Boehringer Ingelheim Pharmaceuticals, Inc.",2024,Lobbyist,27000.0,PAUL G AFONSO,BOEHRINGER INGELHEIM PHARMACEUTICALS +47,Paul G. Afonso,AbbVie Inc.,2024,Lobbyist,35000.0,PAUL G AFONSO,ABBVIE +48,Paul G. Afonso,Moderna Inc.,2024,Lobbyist,33000.0,PAUL G AFONSO,MODERNA +49,Paul G. Afonso,Vivid Seats,2024,Lobbyist,30000.0,PAUL G AFONSO,VIVID SEATS +50,Paul G. Afonso,The Hertz Corporation,2024,Lobbyist,3250.0,PAUL G AFONSO,HERTZ +51,Paul G. Afonso,JetBlue Airways Corporation,2024,Lobbyist,24000.0,PAUL G AFONSO,JETBLUE AIRWAYS +52,Paul G. Afonso,"GPR Product Development, LLC",2024,Lobbyist,24000.0,PAUL G AFONSO,GPR PRODUCT DEVELOPMENT +53,Paul G. Afonso,"Massachusetts Association of Public Insurance Adjusters, Inc.",2024,Lobbyist,20000.0,PAUL G AFONSO,MASSACHUSETTS ASSOCIATION OF PUBLIC INSURANCE ADJUSTERS +54,Paul G. Afonso,"Onyx Springfield Crossing, LLC",2024,Lobbyist,26225.0,PAUL G AFONSO,ONYX SPRINGFIELD CROSSING +55,Paul G. Afonso,Total salaries received,2024,Lobbyist,737975.0,PAUL G AFONSO,TOTAL SALARIES RECEIVED +56,Aaron Agulnek,"Massachusetts Affiliate of ACNM, Inc",2024,Lobbyist,0.0,AARON AGULNEK,MASSACHUSETTS AFFILIATE OF ACNM +57,Aaron Agulnek,"Adoptions With Love, Inc.",2024,Lobbyist,18725.0,AARON AGULNEK,ADOPTIONS WITH LOVE +58,Aaron Agulnek,Roman Catholic Archbishop of Boston,2024,Lobbyist,14000.0,AARON AGULNEK,ROMAN CATHOLIC ARCHBISHOP OF BOSTON +59,Aaron Agulnek,"Ascentria Care Alliance, Inc.",2024,Lobbyist,16321.5,AARON AGULNEK,ASCENTRIA CARE ALLIANCE +60,Aaron Agulnek,"BAY STATE BIRTH COALITION, INC.",2024,Lobbyist,0.0,AARON AGULNEK,BAY STATE BIRTH COALITION +61,Aaron Agulnek,"Beacon ABA Services, Inc.",2024,Lobbyist,3300.0,AARON AGULNEK,BEACON ABA SERVICES +62,Aaron Agulnek,The Boston Debate League Incorporated,2024,Lobbyist,9000.0,AARON AGULNEK,BOSTON DEBATE LEAGUE +63,Aaron Agulnek,"Bottom Line, Inc.",2024,Lobbyist,12600.0,AARON AGULNEK,BOTTOM LINE +64,Aaron Agulnek,Bryn Austin,2024,Lobbyist,8000.0,AARON AGULNEK,BRYN AUSTIN +65,Aaron Agulnek,"Criterion Child Enrichment, Inc.",2024,Lobbyist,7620.0,AARON AGULNEK,CRITERION CHILD ENRICHMENT +66,Aaron Agulnek,Southwest Boston Senior Services,2024,Lobbyist,13200.0,AARON AGULNEK,SOUTHWEST BOSTON SENIOR SERVICES +67,Aaron Agulnek,"Evergreen Center, Inc.",2024,Lobbyist,7400.0,AARON AGULNEK,EVERGREEN CENTER +68,Aaron Agulnek,GPS Group Peer Support LLC,2024,Lobbyist,0.0,AARON AGULNEK,GPS GROUP PEER SUPPORT +69,Aaron Agulnek,"Guardian Community Trust, Inc.",2024,Lobbyist,37800.0,AARON AGULNEK,GUARDIAN COMMUNITY TRUST +70,Aaron Agulnek,Healthy Children Project Inc DBA ALPP,2024,Lobbyist,12250.0,AARON AGULNEK,HEALTHY CHILDREN PROJECT +71,Aaron Agulnek,"International Institute of New England, Inc",2024,Lobbyist,16387.5,AARON AGULNEK,INTERNATIONAL INSTITUTE OF NEW ENGLAND +72,Aaron Agulnek,Jewish Community Relations Council of Boston,2024,Lobbyist,30000.0,AARON AGULNEK,JEWISH COMMUNITY RELATIONS COUNCIL OF BOSTON +73,Aaron Agulnek,"MASSACHUSETTS ASSOCIATION OF PHYSICIAN ASSOCIATES, INC.",2024,Lobbyist,16200.0,AARON AGULNEK,MASSACHUSETTS ASSOCIATION OF PHYSICIAN +74,Aaron Agulnek,MA Coalition to Prevent Gun Violence,2024,Lobbyist,5818.75,AARON AGULNEK,MA COALITION TO PREVENT GUN VIOLENCE +75,Aaron Agulnek,"Massachusetts Fair Housing Center, Inc.",2024,Lobbyist,12300.0,AARON AGULNEK,MASSACHUSETTS FAIR HOUSING CENTER +76,Aaron Agulnek,Mass Home Care Association,2024,Lobbyist,25376.43,AARON AGULNEK,MASS HOME CARE ASSOCIATION +77,Aaron Agulnek,"The Mass Mentoring Partnership, Inc.",2024,Lobbyist,13300.0,AARON AGULNEK,MASS MENTORING PARTNERSHIP +78,Aaron Agulnek,"Massachusetts Service Alliance, Inc.",2024,Lobbyist,19128.0,AARON AGULNEK,MASSACHUSETTS SERVICE ALLIANCE +79,Aaron Agulnek,"MASSACHUSETTS DENTAL HYGIENISTS' ASSOCIATION , INC.",2024,Lobbyist,15600.0,AARON AGULNEK,MASSACHUSETTS DENTAL HYGIENISTS ASSOCIATION +80,Aaron Agulnek,"MASSACHUSETTS EMPLOYMENT LAWYERS ASSOCIATION, INC.",2024,Lobbyist,14276.1,AARON AGULNEK,MASSACHUSETTS EMPLOYMENT LAWYERS ASSOCIATION +81,Aaron Agulnek,"Metropolitan Council for Educational Opportunity (METCO), Inc.",2024,Lobbyist,16800.0,AARON AGULNEK,METROPOLITAN COUNCIL FOR EDUCATIONAL OPPORTUNITY METCO +82,Aaron Agulnek,"Massachusetts Immigrant and Refugee Advocacy Coalition, Inc.",2024,Lobbyist,17500.0,AARON AGULNEK,MASSACHUSETTS IMMIGRANT AND REFUGEE ADVOCACY COALITION +83,Aaron Agulnek,"National Association of Social Workers, Inc.",2024,Lobbyist,6000.0,AARON AGULNEK,NATIONAL ASSOCIATION OF SOCIAL WORKERS +84,Aaron Agulnek,National Consumer Law Center Inc.,2024,Lobbyist,8000.0,AARON AGULNEK,NATIONAL CONSUMER LAW CENTER +85,Aaron Agulnek,"Boston Women's Health Book Collective, Inc",2024,Lobbyist,9106.24,AARON AGULNEK,BOSTON WOMEN S HEALTH BOOK COLLECTIVE +86,Aaron Agulnek,OutstandingLife,2024,Lobbyist,10000.0,AARON AGULNEK,OUTSTANDINGLIFE +87,Aaron Agulnek,ParentChild+ Inc.,2024,Lobbyist,15900.0,AARON AGULNEK,PARENTCHILD+ +88,Aaron Agulnek,American Red Cross,2024,Lobbyist,12000.0,AARON AGULNEK,AMERICAN RED CROSS +89,Aaron Agulnek,Veterans Inc.,2024,Lobbyist,21000.0,AARON AGULNEK,VETERANS +90,Aaron Agulnek,Vanessa Colleran,2024,Lobbyist,0.0,AARON AGULNEK,VANESSA COLLERAN +91,Aaron Agulnek,"Greater Boston Legal Services, Inc.",2024,Lobbyist,4800.0,AARON AGULNEK,GREATER BOSTON LEGAL SERVICES +92,Aaron Agulnek,Samaritans Inc.,2024,Lobbyist,15000.0,AARON AGULNEK,SAMARITANS +93,Aaron Agulnek,"Massachusetts Association for Community Action, Inc.",2024,Lobbyist,28605.0,AARON AGULNEK,MASSACHUSETTS ASSOCIATION FOR COMMUNITY ACTION +94,Aaron Agulnek,"MA CAPE, Inc",2024,Lobbyist,12000.0,AARON AGULNEK,MA CAPE +95,Aaron Agulnek,Massachusetts Association of Criminal Defense Attorneys,2024,Lobbyist,5000.0,AARON AGULNEK,MASSACHUSETTS ASSOCIATION OF CRIMINAL DEFENSE ATTORNEYS +96,Aaron Agulnek,"Boston Arts Summer Institute, Inc",2024,Lobbyist,30000.0,AARON AGULNEK,BOSTON ARTS SUMMER INSTITUTE +97,Aaron Agulnek,"Massachusetts Law Reform Institute, Inc.",2024,Lobbyist,35000.0,AARON AGULNEK,MASSACHUSETTS LAW REFORM INSTITUTE +98,Aaron Agulnek,Person_not_a_Company,2024,Lobbyist,0.0,AARON AGULNEK,PERSON_NOT_A_COMPANY +99,Aaron Agulnek,"The Massachusetts International Festival of the Arts, Inc.",2024,Lobbyist,24000.0,AARON AGULNEK,MASSACHUSETTS INTERNATIONAL FESTIVAL OF ARTS diff --git a/docs/data/MA_lobbying_summary_links_sample.csv b/docs/data/MA_lobbying_summary_links_sample.csv new file mode 100644 index 00000000..22f6030d --- /dev/null +++ b/docs/data/MA_lobbying_summary_links_sample.csv @@ -0,0 +1,101 @@ +entity_name,year,summary_url,disc_url +"21c, LLC",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCIgVktzTowTHDxMh68dzxw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgV37dyqQoUDisAp0HQj3O1pvbVeMcoDoacAMaRr2Mf99 +"21c, LLC",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCIgVktzTowTHDxMh68dzxw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXAU1mOSIPF3KjdioJzQK7GTBYZqIBleIjHEgHlgIwyR +"27 South Strategies, LLC",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLJGaPu8imTWWjtAcbtwXKw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgcoLYtPytS6Q7w2M3NiYM53n7demZYWm18Dr0xTUMf5r +"27 South Strategies, LLC",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLJGaPu8imTWWjtAcbtwXKw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgSXfpEfLke3lETpI5Y7C2e2ZM0l4wjjv9/832arPlMVR +Anthony Arthur Abdelahad,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToIZaI0RYElFBc0rF4Rmp3l0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgaWNEJe/apgcdJzXHHB7EAFtcbyEbYn5gedl83dcomhZ +Anthony Arthur Abdelahad,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToIZaI0RYElFBc0rF4Rmp3l0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgX4ZlWvTdlv0vC9lWfSD8xBev6weUSYRembZkGXq/wAw +Viviana Maria Abreu-Hernandez,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM2HWp6YmFE+YgO96aP/A5I=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZSPqXbo58KwzgYFGPnBNPd/utUZ2MOz/4DydO/+etzT +Nicholas Acquavito,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHfiM0QaH5N/SlsPCxInyYY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgdXzTBWuPOKsWr88jvo1uqpbSCKVcja8IQNZ21oepaN2 +Nicholas Acquavito,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHfiM0QaH5N/SlsPCxInyYY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeAhpJRceda9+GC5qh19Tu3NgpsKYj5zIi3vP8/7SQk8 +Nicholas Adamopoulos,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPlZbcNrYW4d+NHy8foCdug=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTa0rHR+xuAgTsnk7DvffCxWlwjehga1XRda6Xkd8INn +Nicholas Adamopoulos,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPlZbcNrYW4d+NHy8foCdug=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgfEQS+TMIy9RZrDGQAXzkTda3kZjhYTzYl8QH0K2sHDI +Susan L. Adams,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM8kt7PGk1rFfzSJr+3NjaI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeI2+Z6mVkQfGSvtx36ohJ5mD2ESK451cWsr9Ics4LDr +Susan L. Adams,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM8kt7PGk1rFfzSJr+3NjaI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgar/Enj7muUqXMFxtT6DGy4MT+l3WzC4Hv9QMVN+eWSN +Danielle Adams,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAsmQp3G5lbjlFjEDlXNctg=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgarrGBNmmP+XKS5LPYC209FsZyO17aECxP2LfYK98SBk +Danielle Adams,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAsmQp3G5lbjlFjEDlXNctg=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXga9jSL+3c6bSmcJxArWt8Hx0p7Q3TTZRYQArqGrjbtf7 +DDC Advocacy LLC,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCzVvJSzOSmwUD8ek+H6jaQ=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgR71KMTsVPocmGsLQ58jVmuBc9Z0+8EHhwq4ON2Oj4dD +Paul G. Afonso,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBKdxfxjWqUjuQgrnj88sIc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgQtUAPSKwYocfdm1SB+dnZK/fZ8BhNL8e24lWW+jN5vp +Paul G. Afonso,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBKdxfxjWqUjuQgrnj88sIc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVTwhl+nT0vO3Bh9T5GPvd430+NfeAMeJx+JQ+HwKv1A +Vishakha Agarwal,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPX5KwCTnjlwpzILeNTJt/E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgU9C6Gm1BoXXC7h3Qi3Ytw7H2cL/71tD3BryDVEkrd7c +Vishakha Agarwal,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPX5KwCTnjlwpzILeNTJt/E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZfJp7bKMEwozzt/7gnP3r9pI2zQKIHgUKxCaFq7S2NG +Aaron Agulnek,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBo1TUa+fA7XnuVN/pIRGKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgY2hfOrszDnaRhjPXYGdJxw510I3FVGKqEw1T4GL8Nl3 +Aaron Agulnek,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBo1TUa+fA7XnuVN/pIRGKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgc93PzPTcWSPkEUiMGcsYQVGhpWmJgUf7gax90rMDuiZ +Josie Ahlberg,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ4z+gvXdkqwiVHiQyEKPpw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgYCwnYvAmsla/TJGEeQZuohPZTOoXQLZOM35T2Gt9Yb/ +Josie Ahlberg,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ4z+gvXdkqwiVHiQyEKPpw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXKQCiVIHYOkczE7g2snzpYzmxqm/lvuxk3Nm7Uknbqf +Kola Akindele,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToIvwrY/ijqeAMyTwUp/GBWA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeEErSGDW0Qwz/kLMSnq9EecApg8xFxPXqCykT5OFOkF +Kola Akindele,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToIvwrY/ijqeAMyTwUp/GBWA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVMUMB0NFesWJrFmbuQZja4YSbAyqsJ1q76Je+KtjeCb +Charles Thomas Alagero,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ8SQ5YJG/0pdBeauVXAb8E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgV0/d3Bqm515tZVLQ+1LsUnusdDSVtkZmf34YrcIXDwZ +Charles Thomas Alagero,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ8SQ5YJG/0pdBeauVXAb8E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgen0U1aXFk432L4xIzpqyaOx+vXQk75pFX2SwO+YXaNO +Allison Alaimo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToKqx7iVbUonMeNELMPTPN64=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXOzjJXTVaJxnfyGn7fQQ6ai4dllO9n2+LEIX2rBAi65 +Allison Alaimo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToKqx7iVbUonMeNELMPTPN64=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgW5TYH6dhY6McJQ/gCnbyTB/r1iYH9Ky0IOBF6hFN4l0 +Pisano Alan,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMHkRz163FG2iW5jwomK8oU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZY284YF/hnTGb5+XngeO6TlkzxDS18D9qwxSS6Rpaf1 +Pisano Alan,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMHkRz163FG2iW5jwomK8oU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeAEsbQjH0Drr0ms+ZjelCX4ms0Pg6UaQhpw+lZtBY2S +David Albright,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHdgt9z6H7lWNo/k23rXq0c=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgb+rNi8qlwHTnAYUkWRQtW+Y+0J6+j0SwtgEwp2kbs4q +David Albright,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHdgt9z6H7lWNo/k23rXq0c=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgU0eZ/crnRS53avfwCANo1Y3dcmbJ3RlFXE9Ug9xNmnS +"Theodore J Aleixo, Jr.",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJUyyzPImGRoZCEexDHGqjE=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgSHXgRAHQTP3G5CBWUIJImJOMOFWIJQkPJEhGmkDrjkD +"Theodore J Aleixo, Jr.",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJUyyzPImGRoZCEexDHGqjE=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgU+IqBUhNGhT5ierubEulTqUTF78SfejLzUBBqMWZ7l5 +Elizabeth Palmer Alfred,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLOWLCpNpc0QfDs5NxAGfiM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgYB9llZ40wcDm1J5UhIYPvgaiH2BCkoJ0idvS8aJoeN+ +Elizabeth Palmer Alfred,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLOWLCpNpc0QfDs5NxAGfiM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgV7ecvFf27EuT780s7skOjSelfsOGrmZIgFlXVXW+Ikw +Raza Ali,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCo1v5brs/2Dq8PR8rFYHzU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVZyrGNKyBjX/IGJy4kd6fXssQWXp9RttjmVcuS1Rk+M +Raza Ali,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCo1v5brs/2Dq8PR8rFYHzU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgUY4PoSASSl1EQ7ooJRCnxtsrW37cZkWmBg2Qhy3Ijom +Gabrielle Kate Alicante,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCr2v3+LX+7BrPAtR5JOsMA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgRTycP8VQ2CZCnO9JyRBziEdtkW1EhLNLM3JqbP9xTxk +Gabrielle Kate Alicante,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCr2v3+LX+7BrPAtR5JOsMA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXcm54zaupP9mWYYylq5DGSVBXqVKpsUkV+y58N6LM/i +Travis H Allen,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToG9Wr58n7/6aHdb1RhLeW2E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgayhKc2rBd6bXjcG4xihbvraWcwMJ6VO2YPwADsOJIt/ +Travis H Allen,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToG9Wr58n7/6aHdb1RhLeW2E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgaxGWNR5rarXJcixhUzVtzgxDjCEPyaCk3FvwFG32nJJ +Nancy Leah Allen Scannell,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToDKXRJtuT6QroDp6IHe6AUw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXCBeTqYHrN8ijVU/6Tpvr+hIKKrPr3ZVW9T26DCXRul +Nancy Leah Allen Scannell,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToDKXRJtuT6QroDp6IHe6AUw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgQMCvODRr+WrM/3FttvCpVG+xpUvfIY37o7rV7VSMQBb +La-Brina Almeida,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPKH8fNtmIONxjbhvUh5meM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgcGXvwuUlPSjhrgH0hTW7gaGUOIlVl72vYF1uSaPWHb1 +Altria Client Services LLC,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHrpAFq+hemD3/GGTrFLIKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgUU9hz/A/ameT7cAUsr6+MCD9snxaV/A3cysRq/GSJc4 +Altria Client Services LLC,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHrpAFq+hemD3/GGTrFLIKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgUU9hz/A/ameT7cAUsr6+MC+b+7YAGcSPCXG3v9mPzVZ +Altria Client Services LLC,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHrpAFq+hemD3/GGTrFLIKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZSZQrllROM5b/1WYQRXDV3Cx0q/RN+sppjcqhnEQyX3 +Jason Aluia,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToO4ZzT3kiJ+OiaHsRgsMHOA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgUN3EzpEE1mCOMs5YBHc9ktY1djYtF5bbPsLXFhKy1NY +Jason Aluia,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToO4ZzT3kiJ+OiaHsRgsMHOA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgR+b3O5M3tJ3hLG5MeCqG3Sa6SrwOx/ieHrPT1NlMeHx +John James Alvarez,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToKFyX8ebGM0CLBB1OCY3dsY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVBmmMRPFLsp9ANvjW/Hyb+LzSSzVPH8FI48mqY4idXS +John James Alvarez,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToKFyX8ebGM0CLBB1OCY3dsY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgRIL5t5Il4xGBMm2eT1p3D/wZXvOu2440m/Ui+NkVruK +Oamshri Amarasingham,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToGZUCaD088YXmopCl08K22s=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgRSHPfwPmspptBsOE6YGNJ4/zl8PjEA9DXmA3Aa/+ETq +Oamshri Amarasingham,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToGZUCaD088YXmopCl08K22s=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgf29pjNH+VVqYd13eqUszEGM9H7wmZFGmeAcUgCSU61L +Robert J Ambrogi,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToH5CL/fyPNxKgduNVp7IEqk=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgaCq6vP8sqSQuk5ObozY+p5qpz5FAc+7hPko9c4cVyaU +Robert J Ambrogi,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToH5CL/fyPNxKgduNVp7IEqk=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeyzdnfYpOubL9grjh7jJQq9c6Iyh4IWtUkHU8rqV9of +Samuel Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMzX6vi49N4eq0sPtNMC0yU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgR0wkSHfiSjO3uDv5YTXv0Xhow/ZMUsLBi1oCLW9TsGS +Samuel Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMzX6vi49N4eq0sPtNMC0yU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbQLET5N+ipPLAEG8GWqBCvxDIWoqnIvBu2HDNR677Ko +Christopher Robert Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMwRDFW4GtQOXOhflD6ipng=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZ3VSlmxu+H63IYGdz1vkSWk1dfhg7pprRJzA0AdnCBp +Christopher Robert Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMwRDFW4GtQOXOhflD6ipng=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTEPbK5kfOGzdw2KuzADBqMEPm0uxqL66GFniMO8rsll +Leda Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLvSqLf3CTfrUJ4DeqqrJ5c=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgfNXzWu8eYrdtvgqkBUQ/NYNCtHgXvOGMENaubKFXIcu +Leda Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLvSqLf3CTfrUJ4DeqqrJ5c=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTf7eXWlbtWTfltacRM2dv5UlZMo12JZ07qxJQ3ZQaok +Kathleen R Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToE+r+46nBFC4UmuMAHonrDU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZQVaPABGRCuy0rOG4IeDyWa5/z9T5gUMU/H9eOWEdH/ +Kathleen R Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToE+r+46nBFC4UmuMAHonrDU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgWqhTu4jTJBVDQ0lba3g4EZ63/Vkh9shAjaQ79eC+Hpy +Lisa Marie Andoscia,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAGaAwMQyVRKp1FqsmTZXn0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgdPIuanfK+xqJcJmgVKN6s4wjl2uX3zLlrQI9XEmhBv0 +Lisa Marie Andoscia,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAGaAwMQyVRKp1FqsmTZXn0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgRQtZPZ8hRVfLorYR65NcKWFnUsjM5zjf8MLWAmSNgQz +Holly Andreozzi,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLRAU6t2DgQUVtT7gqJyvqc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgYoq4mcdp0TPgFKKI0XUoicKm9+FWioT4XK6g39mfi1M +Holly Andreozzi,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLRAU6t2DgQUVtT7gqJyvqc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeZ8Q0l1iXoOAU2zC9wZSNs4GqMdYZCujNfFhoXyqjET +Cole Keelan Angley,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAurA9WBH+4DrHMV5Gk8le0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXSa4n1+RgMBw5n1/3fv/rXWpz254u0mqqb0g2ssVyS8 +Cole Keelan Angley,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAurA9WBH+4DrHMV5Gk8le0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgWeSlBObnloghnnb9mhn93qwjlxIx4wQDmXTTr290rmY +Rafael Antigua,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ7skATIfA2bsBEViEpKGUw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgapPvXCrM9Xj0I6pxkZY5x3WXEShzrWxTNNOw3BFzlsf +Rafael Antigua,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ7skATIfA2bsBEViEpKGUw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZ9vWetxuHHyrcnLeG7+ajpQFUdJfM7DayyToWdjQkHT +Chelsea Elizabeth Aquino-Fenstermaker,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToE3uODVYDn91Qe0H6LJm2Uc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTikU7RESJpFH5Iq4bNBOP1aC8tB4dIJohR+BBI8p+G1 +Chelsea Elizabeth Aquino-Fenstermaker,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToE3uODVYDn91Qe0H6LJm2Uc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgWylDIDUdKz80hFbJf1J51GRa7JvI4HYtyLlatvjka3F +Luz A Arevalo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPY58KS4ndJxBEYkVkD0WQk=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeHw4y3BR5V0EBXHfJeGKAMYRKyEIAac7uduI/v8WrYP +Luz A Arevalo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPY58KS4ndJxBEYkVkD0WQk=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXTCliPkcw9ihv+op+XWL1DMf73aKm12CzNzG/xQ6N2S +Derek Armstrong,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHEfluu0/yz74vvm/zVxr2Y=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbiHn5kwvbJQK46TxWj7CSi8UemxdBsyRzRnHCXMw70T +Derek Armstrong,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHEfluu0/yz74vvm/zVxr2Y=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgfKv+kWEEas+4fySlysewY8GTBP8Z84p0+xCMTNZTQt7 +Matthew Paul Arsenault,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMgNmDPSWwPWyDgmQeVACHc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZkJmU8UQCojgaaGP7FfmUgNSoAzMX/y5BCn2Qi6MCVm +Christina Ascolillo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToNhkFsXobuXyl3nDOcMw48A=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZNAykwKKMFLSRbQRyWLDHMkRRhDxITK9gJmy76gtOYy +Christina Ascolillo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToNhkFsXobuXyl3nDOcMw48A=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbPpnbybiOPgd8sZ6ucBIqFDQqc2vV4f26hrf/zb/aS0 +"Robert Ash, Jr.",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToOcNafpIPfzXwdDuSn8mcAI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgcBMMVzaag9A5myBl5Yf7wcDF0aKH7oO/7dVCjFkMJe6 +"Robert Ash, Jr.",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToOcNafpIPfzXwdDuSn8mcAI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTw2PGUdf0PGL2BBmbsdsMV33Wm51mCGAAK4CQHMKkDJ +Sarah Selamawit Assefa,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM41C7ZgkglKFtXNKWRmSvo=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgcMjQn9L1a8xFJ1QSLfvOtNe4PthU3J8pGzXTGoAOYnz +Sarah Selamawit Assefa,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM41C7ZgkglKFtXNKWRmSvo=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgY5TBBA1XZk4NAfgWamuR2TvOwg6Ex+lDq0I/uGVu0nz +Ellen Attaliades,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToH9nbhFdO7lR5y2ZFMgKFQI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgWCVxmDm+cm69E0RnTwMpdGShKryoxHqVwrNVjiGFWDq +Ellen Attaliades,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToH9nbhFdO7lR5y2ZFMgKFQI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgazvCIgm5EbrgxICTIw8gJAvYKV20qGe1WRJs/ya85C1 +Melissa Kraus Augenbraun,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToGh56xu8sS0wMjqRyARjrw8=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbCZZwVi2gJsWTDGy9Lncfp/HfJPTOn8wAh1y41Qs0mo +Melissa Kraus Augenbraun,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToGh56xu8sS0wMjqRyARjrw8=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbKgrgXelnbhJdGHzwpBzBldeWp0ZKTIyhKASfxiqxZC +John Augustine,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToB6HQ1VwPkhToH4pJzdV57k=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeG7ujwsMr0juJHTRUOC/LJYC9Zipxl37/CqeZlZfZwn +John Augustine,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToB6HQ1VwPkhToH4pJzdV57k=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgaOvwA0ZVX+VqeUhNzulhHes1F7sivgcuSbwyiy1+NMh +Jessica Avery,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHMlP3E4cFXs+4GhWQqyOso=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTiDiv0J1IF2QA2lPo/Qhap0TcO3JFMM0YDtmPlQYcZ1 +Jessica Avery,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHMlP3E4cFXs+4GhWQqyOso=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgQTdylX7S/vxSrF05IcU+iL3xl+SToMx5ovzvv3Lam2S +Michael Avitzur,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToG1p8N+dGu7rF/IMh8XZalM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVTvTAox6YK1NomGHC0WXzASSpuL/D7a44buX6BQLMA8 +Michael Avitzur,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToG1p8N+dGu7rF/IMh8XZalM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgYsNEfROmEkGnYjfv/99wl8JYWhlRa+ngLIg9yx6ZB57 +Steven Baddour,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBDVe49iQMg9INjK5+/DjjQ=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgd657H4cdXnrpg67QNIA8ulQgfoBxbWNJq2pJBN0y/TE +Steven Baddour,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBDVe49iQMg9INjK5+/DjjQ=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZ/DPahXVB++JJbwJqoN2EhUEIw7VLeyfxqt/jxE1B3A +Omaira Badillo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToORQXGKX+F0KZV/Tu524F+g=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTqggfbwXp0fIqlsWQAZqjjNsNER6O2kBpFGFWYFbRN8 diff --git a/docs/data/MA_precipitation_daily.csv b/docs/data/MA_precipitation_daily.csv index 9dcabfa0..1053a725 100644 --- a/docs/data/MA_precipitation_daily.csv +++ b/docs/data/MA_precipitation_daily.csv @@ -111,7 +111,7 @@ date,precip_in_avg,n_stations 2000-04-19,0.4164556962025316,79 2000-04-20,0.044927536231884,69 2000-04-21,0.5306410256410257,78 -2000-04-22,1.892738095238096,84 +2000-04-22,1.8927380952380957,84 2000-04-23,0.3754761904761904,84 2000-04-24,0.1558571428571428,70 2000-04-25,0.0053731343283582,67 @@ -9496,157 +9496,157 @@ date,precip_in_avg,n_stations 2025-12-29,0.33036,250 2025-12-30,0.3939574468085106,235 2025-12-31,0.0039301310043668,229 -2026-01-01,0.10853061224489796,245 -2026-01-02,0.03191176470588235,204 +2026-01-01,0.10853061224489798,245 +2026-01-02,0.031911764705882355,204 2026-01-03,4.0816326530612245e-05,245 -2026-01-04,0.014689265536723162,177 +2026-01-04,0.014689265536723164,177 2026-01-05,0.015000000000000001,180 2026-01-06,0.03940928270042194,237 2026-01-07,0.1364367816091954,261 2026-01-08,0.048888888888888885,243 2026-01-09,0.004291044776119403,268 -2026-01-10,0.0833579335793358,271 -2026-01-11,0.4897500000000001,280 +2026-01-10,0.08335793357933581,271 +2026-01-11,0.48974999999999996,280 2026-01-12,0.005443037974683544,237 2026-01-13,0.00015686274509803922,255 -2026-01-14,0.0023605150214592273,233 +2026-01-14,0.0023605150214592277,233 2026-01-15,0.03371794871794872,234 2026-01-16,0.0022093023255813954,258 2026-01-17,0.050762711864406784,236 2026-01-18,0.12915611814345992,237 -2026-01-19,0.4273255813953489,258 +2026-01-19,0.4273255813953488,258 2026-01-20,0.016649214659685864,191 -2026-01-21,0.003345864661654135,266 +2026-01-21,0.0033458646616541356,266 2026-01-22,0.06293388429752066,242 2026-01-23,0.0003409090909090909,264 2026-01-24,0.0,255 2026-01-25,0.07227272727272727,264 -2026-01-26,1.2994941634241244,257 -2026-01-27,0.14116666666666672,240 +2026-01-26,1.2994941634241246,257 +2026-01-27,0.1411666666666667,240 2026-01-28,0.002835051546391753,194 2026-01-29,7.518796992481203e-05,266 2026-01-30,0.0001893939393939394,264 2026-01-31,0.0,269 -2026-02-01,0.001111111111111111,216 -2026-02-02,0.0033628318584070795,226 -2026-02-03,0.0,280 -2026-02-04,0.0,269 -2026-02-05,3.717472118959108e-05,269 -2026-02-06,0.0005836575875486381,257 -2026-02-07,0.12247863247863248,234 -2026-02-08,0.11305676855895197,229 -2026-02-09,0.00042145593869731806,261 -2026-02-10,0.0067857142857142855,252 -2026-02-11,0.1312109375,256 -2026-02-12,0.00592814371257485,167 -2026-02-13,0.0,259 +2026-02-01,0.0011111111111111111,216 +2026-02-02,0.0033777777777777777,225 +2026-02-03,0.0,279 +2026-02-04,0.0,268 +2026-02-05,3.7313432835820896e-05,268 +2026-02-06,0.00046874999999999993,256 +2026-02-07,0.12188841201716738,233 +2026-02-08,0.11355263157894738,228 +2026-02-09,0.00042307692307692315,260 +2026-02-10,0.006334661354581674,251 +2026-02-11,0.13164705882352942,255 +2026-02-12,0.005963855421686747,166 +2026-02-13,0.0,258 2026-02-14,0.0,260 -2026-02-15,4.2553191489361704e-05,235 -2026-02-16,0.0,260 +2026-02-15,4.2735042735042735e-05,234 +2026-02-16,0.0,259 2026-02-17,0.0,219 -2026-02-18,0.009121951219512196,205 -2026-02-19,0.07333333333333333,240 -2026-02-20,0.0374031007751938,258 -2026-02-21,0.4775486381322958,257 -2026-02-22,0.028511904761904763,168 -2026-02-23,0.6142131979695431,197 -2026-02-24,0.4579581151832461,191 -2026-02-25,0.0244390243902439,205 -2026-02-26,0.05481818181818182,220 -2026-02-27,0.0,245 -2026-02-28,0.0,251 -2026-03-01,0.0025213675213675217,234 +2026-02-18,0.008970588235294117,204 +2026-02-19,0.07364016736401674,239 +2026-02-20,0.03610894941634242,257 +2026-02-21,0.4791015625,256 +2026-02-22,0.028622754491017966,167 +2026-02-23,0.6072448979591837,196 +2026-02-24,0.4603684210526316,190 +2026-02-25,0.024264705882352945,204 +2026-02-26,0.055068493150684926,219 +2026-02-27,0.0,244 +2026-02-28,0.0,250 +2026-03-01,0.0021212121212121214,231 2026-03-02,0.023819095477386937,199 -2026-03-03,0.040076923076923086,260 -2026-03-04,0.6174712643678161,261 -2026-03-05,0.030625000000000006,256 -2026-03-06,0.78484496124031,258 -2026-03-07,0.058893617021276594,235 -2026-03-08,0.015863874345549738,191 -2026-03-09,0.0025541125541125543,231 +2026-03-03,0.04023166023166023,259 +2026-03-04,0.6170769230769231,260 +2026-03-05,0.030745098039215685,255 +2026-03-06,0.784669260700389,257 +2026-03-07,0.06174468085106382,235 +2026-03-08,0.015894736842105267,190 +2026-03-09,0.002565217391304348,230 2026-03-10,0.0001851851851851852,270 -2026-03-11,0.006905660377358491,265 -2026-03-12,0.19169884169884172,259 -2026-03-13,0.027087378640776698,206 -2026-03-14,0.01492682926829268,205 -2026-03-15,0.0008771929824561404,228 -2026-03-16,0.359463601532567,261 -2026-03-17,0.91225,280 -2026-03-18,0.0006772908366533864,251 -2026-03-19,0.00011494252873563218,261 -2026-03-20,0.012412451361867702,257 -2026-03-21,0.150431654676259,278 -2026-03-22,0.0498015873015873,252 -2026-03-23,0.8067279411764706,272 -2026-03-24,0.15631782945736436,258 -2026-03-25,0.0003018867924528302,265 -2026-03-26,0.045274261603375526,237 -2026-03-27,0.1303942652329749,279 -2026-03-28,0.0004000000000000001,275 -2026-03-29,3.717472118959108e-05,269 -2026-03-30,0.0,280 -2026-03-31,0.06918032786885245,244 -2026-04-01,0.22047970479704798,271 -2026-04-02,0.45903571428571427,280 -2026-04-03,0.15053956834532373,278 -2026-04-04,0.01069672131147541,244 -2026-04-05,0.04490494296577947,263 -2026-04-06,0.13003759398496242,266 -2026-04-07,0.01935483870967742,217 -2026-04-08,0.06200716845878136,279 -2026-04-09,0.00013937282229965157,287 -2026-04-10,0.0006810035842293907,279 -2026-04-11,0.008433734939759036,249 -2026-04-12,0.001611721611721612,273 -2026-04-13,0.020901639344262292,244 -2026-04-14,0.030843881856540085,237 -2026-04-15,0.21548951048951048,286 -2026-04-16,0.31672297297297297,296 -2026-04-17,0.11508833922261487,283 -2026-04-18,0.058301158301158305,259 -2026-04-19,0.0519838056680162,247 -2026-04-20,0.1675875486381323,257 -2026-04-21,0.03251046025104603,239 -2026-04-22,0.00536480686695279,233 -2026-04-23,0.009014084507042254,213 -2026-04-24,0.0,277 -2026-04-25,0.006402877697841726,278 -2026-04-26,0.022500000000000003,268 -2026-04-27,0.0016296296296296297,270 -2026-04-28,0.0,285 -2026-04-29,0.0016287878787878789,264 -2026-04-30,0.1489700996677741,301 -2026-05-01,0.09942238267148015,277 -2026-05-02,0.07679166666666666,240 -2026-05-03,0.19049808429118772,261 -2026-05-04,0.011203319502074689,241 -2026-05-05,0.0003321033210332103,271 -2026-05-06,0.02428015564202335,257 -2026-05-07,0.3168027210884354,294 -2026-05-08,0.019920948616600792,253 -2026-05-09,0.0791025641025641,234 -2026-05-10,0.3748314606741573,267 -2026-05-11,0.07329268292682928,246 -2026-05-12,0.006254980079681275,251 -2026-05-13,0.008360655737704918,244 -2026-05-14,0.12166666666666669,264 -2026-05-15,0.4133212996389892,277 -2026-05-16,0.024159292035398235,226 -2026-05-17,0.01677966101694915,236 -2026-05-18,0.00022304832713754649,269 -2026-05-19,0.011794871794871794,273 -2026-05-20,0.16707407407407407,270 -2026-05-21,0.0367420814479638,221 -2026-05-22,0.0037903225806451613,248 -2026-05-23,0.005284552845528455,246 -2026-05-24,0.14337301587301587,252 -2026-05-25,0.6235766423357664,274 -2026-05-26,0.14305970149253733,268 -2026-05-27,0.0036904761904761906,252 -2026-05-28,0.01531746031746032,252 -2026-05-29,0.05210084033613445,238 -2026-05-30,0.23679389312977098,262 -2026-05-31,0.2872950819672131,244 +2026-03-11,0.006931818181818182,264 +2026-03-12,0.19228682170542635,258 +2026-03-13,0.027330097087378644,206 +2026-03-14,0.015,204 +2026-03-15,0.000881057268722467,227 +2026-03-16,0.3576425855513308,263 +2026-03-17,0.9186524822695036,282 +2026-03-18,0.00068,250 +2026-03-19,0.00011538461538461538,260 +2026-03-20,0.0124609375,256 +2026-03-21,0.15046931407942238,277 +2026-03-22,0.05,251 +2026-03-23,0.8052189781021898,274 +2026-03-24,0.1586434108527132,258 +2026-03-25,0.0002661596958174905,263 +2026-03-26,0.045319148936170214,235 +2026-03-27,0.13028776978417267,278 +2026-03-28,0.000402930402930403,273 +2026-03-29,3.745318352059925e-05,267 +2026-03-30,0.0,278 +2026-03-31,0.06904564315352697,241 +2026-04-01,0.22323308270676695,266 +2026-04-02,0.4573550724637681,276 +2026-04-03,0.15128205128205127,273 +2026-04-04,0.011302521008403362,238 +2026-04-05,0.04684824902723736,257 +2026-04-06,0.13073359073359073,259 +2026-04-07,0.01904761904761905,210 +2026-04-08,0.06193430656934306,274 +2026-04-09,0.00014184397163120567,282 +2026-04-10,0.0007011070110701107,271 +2026-04-11,0.008677685950413223,242 +2026-04-12,0.001590909090909091,264 +2026-04-13,0.02104602510460251,239 +2026-04-14,0.030822510822510824,231 +2026-04-15,0.2150709219858156,282 +2026-04-16,0.3141580756013746,291 +2026-04-17,0.11672794117647059,272 +2026-04-18,0.05891566265060242,249 +2026-04-19,0.04945147679324894,237 +2026-04-20,0.16805668016194333,247 +2026-04-21,0.03284444444444444,225 +2026-04-22,0.0054751131221719455,221 +2026-04-23,0.009494949494949494,198 +2026-04-24,0.0,257 +2026-04-25,0.007035573122529643,253 +2026-04-26,0.02153526970954357,241 +2026-04-27,0.0018454935622317598,233 +2026-04-28,0.0,199 +2026-04-29,,0 +2026-04-30,,0 +2026-05-01,,0 +2026-05-02,,0 +2026-05-03,,0 +2026-05-04,,0 +2026-05-05,,0 +2026-05-06,,0 +2026-05-07,,0 +2026-05-08,,0 +2026-05-09,,0 +2026-05-10,,0 +2026-05-11,,0 +2026-05-12,,0 +2026-05-13,,0 +2026-05-14,,0 +2026-05-15,,0 +2026-05-16,,0 +2026-05-17,,0 +2026-05-18,,0 +2026-05-19,,0 +2026-05-20,,0 +2026-05-21,,0 +2026-05-22,,0 +2026-05-23,,0 +2026-05-24,,0 +2026-05-25,,0 +2026-05-26,,0 +2026-05-27,,0 +2026-05-28,,0 +2026-05-29,,0 +2026-05-30,,0 +2026-05-31,,0 2026-06-01,,0 2026-06-02,,0 2026-06-03,,0 diff --git a/docs/data/data_stats.yml b/docs/data/data_stats.yml index c9147917..5e094738 100644 --- a/docs/data/data_stats.yml +++ b/docs/data/data_stats.yml @@ -1,9 +1,9 @@ EEADP_CSO.csv: 17795 -EEADP_enforcement.csv: 55252 -EEADP_facility.csv: 53520 -EEADP_inspection.csv: 84405 +EEADP_enforcement.csv: 55182 +EEADP_facility.csv: 53490 +EEADP_inspection.csv: 84266 EEADP_permit.csv: 101144 -EPARegion1_NPDES_permit_data.csv: 4482 +EPARegion1_NPDES_permit_data.csv: 4460 EPA_303d_impairments.csv: 106058 MADEP_enforcement_actions.csv: 4348 MADEP_staff.csv: 12048 diff --git a/docs/data/embedding_diagnostics.png b/docs/data/embedding_diagnostics.png new file mode 100644 index 0000000000000000000000000000000000000000..4925c692ebc1a93020b6f9dd71553e158f43f4f3 GIT binary patch literal 376482 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

%~ZwZH$$sAG`qnKOTo4?t=Eh*`&O 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∕}^!aI4)KUOFp-;z+ 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.5. The dense structure is likely partly an artifact of the body-text mismatch problem (body text is unrelated to bill topic). + +--- + +## Embedding method comparison (2,000-bill sample, k=25) + +Tested twice: once with **wrong GC** (body text is ~98% from unrelated bills) and again after the GC fix with **correct body text**. Same 2,000-bill sample each time. + +### Wrong GC (body = unrelated bills ~98% of the time) + +| Method | Silhouette↑ | DB↓ | Notes | +|--------|-------------|-----|-------| +| A. Original (SoS title + API body combined) | 0.023 | 4.76 | Current production method at time of test | +| B. **Title only (SoS)** | **0.043** | **3.71** | Best; 2× silhouette improvement | +| C. Body only (API) | 0.024 | 4.61 | Nearly as bad as combined | +| D. Concat [L2(title) \| L2(body)] | 0.025 | 4.76 | No improvement over original | + +### Correct GC (body text matches the actual lobbied bill — run May 2026 after fix) + +| Method | Silhouette↑ | DB↓ | vs. wrong-GC | +|--------|-------------|-----|--------------| +| A. Original (SoS title + API body combined) | 0.0278 | 4.46 | +21% | +| B. **Title only (SoS)** | **0.0412** | **3.83** | -4% (unchanged) | +| C. Body only (API) | 0.0278 | 4.37 | +16% | +| D. Concat [L2(title) \| L2(body)] | 0.0296 | 4.54 | +18% | + +**Title-only is still the best embedding strategy even with correct body text.** Fixing the GC improved A, C, D by 16–21%, but title-only (B) leads by ~48% silhouette over A and remained essentially unchanged. The body text appears to dilute topic signal even when it belongs to the correct bill — MA legislative body text is structurally noisy (boilerplate, amendments-to-existing-law syntax, cross-references) even after scaffold stripping. + +Switching to title-only embeddings would require a full re-embed of ~25,000 bills. The current parquet stores title+body (method A). + +--- + +## LLM classification spot-check (Gemini 2.5 Flash, May 2026) + +42 bills sampled across 6 score buckets around the 0.05 threshold; classified with Gemini 2.5 Flash (SoS title + first 800 chars of stored body text). + +**Overall agreement with current embedding classification: 64% (27/42).** + +| Score range | Bills | Agreement | Key finding | +|-------------|-------|-----------|-------------| +| < −0.05 | 1,419 | — (not tested) | | +| −0.05 to −0.02 | 7,149 | 80% | 1/5 false negative (climate adaptation bill) | +| −0.02 to 0.0 | 10,243 | 100% in sample of 8 | | +| 0.0 to 0.02 | 4,997 | **25%** | 6/8 are env per LLM — major false negatives | +| 0.02 to 0.05 | 1,795 | **12%** | 7/8 are env per LLM — major false negatives | +| 0.05 to 0.08 | 301 | 88% | 1/8 false positive | +| > 0.08 | 28 | — (not tested) | | + +**Examples of false negatives the LLM catches:** +- "An Act to expand the bottle bill" (waste management) — score +0.010 +- "An Act preventing gas expansion to protect climate, community health and safety" — score +0.019 +- "An Act relative to net metering" — score +0.023 +- "An Act requiring local approval for battery storage facility permitting" — score +0.011 +- "An Act relative to fair and stable electricity pricing" — score +0.032 +- "An Act relative to environmental justice in the commonwealth" — score +0.032 +- "Communication from Department of Energy Resources re: renewable portfolio standards" — score +0.038 +- "An Act to expand the bottle bill" — score +0.010 + +The LLM also correctly flags title/body mismatches (e.g., "An Act to strengthen notifications in the Wetlands Protection Act" whose stored body is actually eyewitness identification law), explicitly noting the discrepancy and weighting the title signal. + +**Cost of hybrid LLM approach (Gemini 2.5 Flash):** + +| Scope | Bills | One-time cost | +|-------|-------|--------------| +| Just the positive-score borderline (0.0–0.08) | 7,093 | ~$0.27 | +| Including near-zero negative band (−0.02–0.08) | 17,336 | ~$0.67 | +| Incremental weekly CI run (~20–30 new borderline bills) | ~25 | <$0.001 | + +--- + +## Clustering algorithm evaluation + +### K-means silhouette sweep (8k subsample, mean-centered + L2) + +| k | Silhouette↑ | DB↓ | +|---|-------------|-----| +| 4 | 0.018 | 6.07 | +| 8 | 0.022 | 5.53 | +| 10 | 0.023 | 5.32 | +| 15 | 0.025 | 4.95 | +| 20 | 0.023 | 4.96 | +| 25 | 0.024 | 4.76 | +| 30 | 0.026 | 4.67 | +| 40 | 0.027 | 4.60 | + +**Conclusion:** The silhouette curve is completely flat across k=4..40 with no elbow. k=25 was chosen on domain grounds (produces ~1,000 bills/cluster, yields coherent topic labels). + +Mean-centering before L2 normalisation gives a small but consistent improvement (silhouette +0.007 at k=25). + +### HDBSCAN sweep (full set, mean-centered + L2) + +| min_size | min_samples | Clusters | Noise% | Silhouette↑ | DB↓ | +|----------|-------------|----------|--------|-------------|-----| +| 10 | 5 | 203 | 84.4% | 0.162 | 2.06 | +| 10 | 10 | 61 | 90.8% | 0.157 | 1.82 | +| 15 | 5 | 100 | 88.7% | 0.154 | 2.23 | +| 20 | 5 | 52 | 87.9% | 0.097 | 2.52 | +| 30 | 5 | 23 | 88.9% | 0.101 | 2.74 | +| 40 | 5 | 18 | 89.2% | 0.107 | 2.70 | +| 50 | 5 | 10 | 90.6% | 0.116 | 2.31 | + +**Conclusion:** HDBSCAN consistently pushes 84–91% of bills into noise. Not suitable for this corpus — the data has no meaningful density gaps between policy domains. + +--- + +## Diagnostic plots (May 2026, post-GC fix) + +![Embedding diagnostics](../docs/data/embedding_diagnostics.png) + +Four panels generated from the full 25,932-bill scored corpus and a 2,000-bill embedding sample after the GC formula fix. + +### Score distribution + +The distribution is sharply right-skewed around a mean of −0.011. Nearly all bills score below zero; the right tail is thin but real. Key counts at the current threshold (0.05): + +| Band | Bills | Notes | +|------|-------|-------| +| < 0 (clearly non-env) | 18,923 | 73% of corpus | +| 0–0.02 (borderline negative) | 4,164 | Spot-check: ~80%+ non-env | +| 0.02–0.05 (borderline positive) | 2,190 | Spot-check: ~75% env per LLM | +| 0.05–0.08 (just above threshold) | 590 | Spot-check: ~88% env | +| ≥ 0.08 (strong env) | 65 | High confidence | +| **Total flagged (≥ 0.05)** | **654** | Up from 329 before GC fix | + +There is no natural density gap between 0.02 and 0.05, suggesting the threshold is somewhat arbitrary in this zone. The LLM spot-check found large false-negative rates in the 0.02–0.05 band. + +### Embedding method comparison + +Title-only embeddings lead in both the wrong-GC and correct-GC conditions: + +| Method | Wrong GC | Correct GC | Δ | +|--------|----------|------------|---| +| A. Title + body (production) | 0.023 | 0.028 | +21% | +| **B. Title only** | **0.043** | **0.041** | −4% (stable) | +| C. Body only | 0.024 | 0.028 | +16% | +| D. Concat [L2(t)‖L2(b)] | 0.025 | 0.030 | +18% | + +Fixing the GC improved all body-containing methods but did not close the gap with title-only. Body text adds structural noise (boilerplate, amendment scaffolding, cross-references) even when it belongs to the correct bill. + +### Cluster env density + +Environmental bills concentrate strongly in two clusters: + +| Cluster | Label | Env bills | % env | +|---------|-------|-----------|-------| +| 14 | Massachusetts Clean Energy Transition | 238 | 30% | +| 2 | Waste Reduction and Recycling | 181 | 39% | +| 20 | Empowering Local Clean Energy | 54 | 5% | +| 0 | Municipal Environmental Governance | 50 | 3% | + +The remaining 21 clusters each contain ≤29 env bills. This concentration is a positive signal: the k=25 topology is correctly separating the clean-energy and waste policy space from unrelated legislation. + +--- + +## t-SNE visualisation + +**[→ Interactive t-SNE (Plotly)](../docs/_includes/charts/lobbying_bill_tsne.html)** + +## t-SNE design note + +Projecting all 25,000+ bills into 2D produces a featureless blob because the inter-cluster cosine distance (~0.006) is ~100× smaller than intra-cluster spread (~0.53). + +**Current approach:** Plot only the 329 environmental bills (coloured by cluster) over a stratified background sample of ~120 non-env bills per cluster (~3,000 total in grey). This makes environmental bills legible within the policy landscape without misrepresenting cluster separation. + +--- + +## Recommended next steps + +1. **Switch to title-only embeddings** for both classification and clustering. Confirmed best strategy after two rounds of testing — title-only wins even with correct body text. Requires a full re-embed (~25k bills). Update `score_lobbying_bills.py` to use `title` instead of the combined `full_text`. Current model files (committed and on GCS) are title+body; a full re-cluster would follow the re-embed. + +2. **Add LLM classification for borderline bills** (score 0.0–0.08, ~7,100 bills). One-time cost ~$0.27 with Gemini 2.5 Flash. Store `llm_is_environmental` and `llm_reason` as additional columns. Use as override when LLM confidence ≥ 0.80. Particularly important given the env threshold review needed (see below). + +3. **Environmental threshold review**: After the GC fix, the env bill count jumped 329 → 654 at threshold=0.05. Needs calibration review — plot the score distribution, spot-check bills near the boundary, and decide whether 0.05 is still correct. Document in an analysis page or data note explaining the method, reference sets, and before/after counts. + +4. **Legislature API lookup quality** (lower priority): match bills by title similarity rather than bill number, or investigate whether the SoS portal exposes docket numbers that map to the API's DocketNumber field. Less urgent now that body text quality is confirmed as structurally noisy regardless. + +--- + +## Re-running clustering + +```bash +cd get_data +/path/to/python -u cluster_lobbying_bills.py +``` + +Then re-run `assemble_db.py` and `MA_lobbying_viz.py` to propagate new cluster labels. + +--- + +## LLM summary + taxonomy pilot diagnostics (495-bill sample, gemini-2.5-flash) + +**Run date:** May 2026 **Cost:** $0.0525 for 495 bills ($0.106/1k bills, $2.76 projected 26k corpus) + +### 1. Env classification — reference set precision/recall + +20 known-env titles and 36 known-non-env titles from the reference sets in `score_lobbying_bills.py` were classified by the LLM. + +| Metric | Value | +|--------|-------| +| Recall (20 known env titles) | **100%** (20/20) | +| Specificity (36 known non-env) | **97%** (35/36) | +| False negatives | 0 | +| False positives | 1 — "An Act limiting autonomous driving capabilities to zero emission and electric vehicles" (borderline ZEV/EV policy) | + +### 2. LLM vs embedding disagreement (495-bill pilot) + +| | Count | +|---|---| +| Both env (agreement) | 18 | +| LLM env only (embedding false negatives) | 63 | +| Embedding env only (embedding false positives) | 0 | + +Bills LLM classifies env but embedding misses (10 examples): +- An Act Relative to Pollution Health Effects Mitigation +- An Act relative to the water resources funding act +- An Act establishing a wildlife management commission +- An Act Relative to the Reduction of Particulate Emissions From Diesel Engines +- An Act further regulating the Pesticide Control Act +- An Act relative to the moose population in the Commonwealth +- An Act further regulating above ground tanks used for the storage of certain fluids +- Prohibit Sale or Use of Polystyrene Packaging +- Environmentally Preferable Cleaning Supplies +- An Act promoting incremental hydropower improvements + +### 3. Structured output quality + +| Metric | Value | +|--------|-------| +| Avg tags per bill | 3.14 | +| Bills with 0 valid tags | 1 | +| Bills with 0 valid categories | 0 | + +### 4. Silhouette comparison (k=25 clustering) + +| Method | Silhouette↑ | Δ | +|--------|-------------|---| +| Original title+body | -0.0387 | — | +| **Summary embed** | **-0.0492** | −27% | + +Both scores are negative, indicating bills are on average closer to the nearest *other* cluster's centroid than to their own. The 27% degradation with summary embeddings is statistically real but both values are in the same "no useful cluster separation" regime — summaries do not improve clustering geometry. However, the **primary value of summaries is not clustering but classification**: LLM `is_environmental` shows 100% recall / 97% specificity on reference titles vs. ~4.5% env rate with the embedding classifier alone (large false-negative rate). + +**Implication for full run:** Proceed for taxonomy tags and `is_environmental` signal; do not expect summary embeddings to improve the UMAP/cluster visualisations. + +### 5. Cost actuals + +| Metric | Value | +|--------|-------| +| Input tokens (total) | 981,288 | +| Cached tokens | 792,990 (80.8%) | +| Avg input / bill | 1,982 tokens | +| Avg output / bill | 152 tokens | +| Reported cost (495 bills) | $0.0525 ← **WRONG** — used bad output price | +| Corrected cost at actual prices | ~$0.304 ($0.614/1k bills) | +| Projected cost (26k full corpus) | **$15.96** (corrected), not $2.76 | +| Savings from prompt caching | ~30–35% | + +> ⚠️ **The $0.0525 / $2.76 figures were computed with output price $0.30/1M instead of $2.50/1M (the correct GA rate). All downstream projections from this pilot were wrong by ~6×.** Verified from GCP billing SKU "Gemini 2.5 Flash GA Text Output - Predictions". See full-run actuals below. + +--- + +### 6. Full-backfill cost actuals (June 2026, 7,211 bills) + +| Metric | Value | +|--------|-------| +| Bills processed | 7,211 (H/S collision backfill) | +| Verified at checkpoint | 2,000 bills = $1.2537 | +| **Actual rate** | **$0.627 / 1k bills** ($0.000627/bill) | +| Avg input / bill | ~1,971 tokens | +| Avg cached / bill | ~1,602 tokens (81% cache hit rate) | +| Avg output / bill | ~151 tokens | +| Output token share of cost | ~60% (at $2.50/1M vs $0.30/1M input) | +| Projected total (7,211 bills) | **~$4.52** | +| Projected 26k full corpus | **~$16.30** | +| Weekly incremental (20–50 bills) | ~$0.013–$0.031 per run | + +**Root cause of all prior underestimates:** output tokens cost $2.50/1M — 8.3× the input price — yet every prior estimate applied the input/cached rate to all tokens. Even at only 151 output tokens/bill, output dominates the per-bill cost. Always use the correct output price when projecting LLM runs with structured JSON responses. + +### 6. UMAP with summary embeddings + +**[→ Interactive UMAP (summary embeddings)](../docs/_includes/charts/lobbying_bill_umap_summary.html)** diff --git a/get_data/README_lobbying.md b/get_data/README_lobbying.md new file mode 100644 index 00000000..3f325a7d --- /dev/null +++ b/get_data/README_lobbying.md @@ -0,0 +1,225 @@ +# MA Lobbying pipeline + +Tracks which bills are being lobbied in the Massachusetts legislature, how much is +spent, and whether those bills are environmentally relevant. Four scripts, the first +three of which run in weekly CI: + +``` +get_MA_lobbying.py + ↓ MA_lobbying_employers.csv, MA_lobbying_bills.csv, MA_lobbying_summary_links.csv +get_MA_legislature_bills.py + ↓ MA_legislature_bills.csv + MA_legislature_cache/.json +score_lobbying_bills.py + ↓ MA_lobbying_bills_scored.csv + gs://openamend-data/MA_bill_embeddings.parquet +cluster_lobbying_bills.py ← manual / one-time + ↓ MA_bill_cluster_labels.csv (cluster_id column also written back to scored CSV) +``` + +All scripts must be run from `get_data/`. Use the `amend_python` conda env, and run +Python directly (not `conda run`) for live log output: + +```bash +/home/nes/miniconda/envs/amend_python/bin/python -u

4`n)lgOnuYZbpc9{A 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%0A;4 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